This is the Query I am using:
query = ( """ query LivestreamShop($livestreamId: ID!, $tab: ShopTab, $transactionTypes: [ListingTransactionType], $query: String, $after: String, $first: Int) { liveStream(id: $livestreamId) { shop (tab : $tab, transactionTypes: $transactionTypes, query: $query, after: $after, first: $first) { edges { node { order { buyer { ... on PublicUserNode {""" + queries.LIVE_SOLD_USER_QUERY + "}}}}}}}}" )
LIVE_SOLD_QUERY = ( """ id title description status price { amount currency } quantity order { buyer{ id profileImage{ id bucket key } username } giftRecipient{ id } id } """ )
Most of the data are returned correctly however data for Order returns as None. Not an authentication issue I think. Am I doing anything wrong? :/
This is the Query I am using:
query = ( """ query LivestreamShop($livestreamId: ID!, $tab: ShopTab, $transactionTypes: [ListingTransactionType], $query: String, $after: String, $first: Int) { liveStream(id: $livestreamId) { shop (tab : $tab, transactionTypes: $transactionTypes, query: $query, after: $after, first: $first) { edges { node { order { buyer { ... on PublicUserNode {""" + queries.LIVE_SOLD_USER_QUERY + "}}}}}}}}" )LIVE_SOLD_QUERY = ( """ id title description status price { amount currency } quantity order { buyer{ id profileImage{ id bucket key } username } giftRecipient{ id } id } """ )Most of the data are returned correctly however data for Order returns as None. Not an authentication issue I think. Am I doing anything wrong? :/