getBuyNowBuyerInfo

This query loads the information about the BuyNow item buyer.

General Pattern

getBuyNowBuyerInfo(itemId: UUID1!){
	field_1
	field_2{
	 nested_field_1
 }
 ...
 }

Sample Query

query{
  getBuyNowBuyerInfo(itemId:"bf39f885-a298-4c2c-9ace-d3367b5e2ae1"){
    totalPrice
    units
    timestamp
    userId
    user{
      id
      username
      name
      email
    }
    externalUserID
    username
  }
}

Sample Response

{
  "data": {
    "getBuyNowBuyerInfo": []
  }
}

Arguments

Name

Type

Description

Required

itemID

UUID

The ID of an BuyNow item.

Yes

Returns

Name

Type

Description

BuyerDetailOutput

Object

An object that contains BuyerDetailOutput object, such as total price, units, user, etc.

Example

Load the BuyNow item buyer's information using the item ID: