A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Could you help get phone, email, country, etc. from shop by using Partner API?
I have the code of GraphQL as
{
app(id: "gid://partners/App/123456") {
id
name
events(
first: 10,
types: [RELATIONSHIP_REACTIVATED],
occurredAtMin: "2019-01-01T00:00:00Z",
occurredAtMax: "2021-11-30T23:59:59Z"
) {
pageInfo {
hasNextPage
hasPreviousPage
}
edges {
node {
type
occurredAt
shop {
id
name
myshopifyDomain
phone
email
country
}
... on RelationshipUninstalled {
reason
description
}
}
}
}
}
}
Thank you very much for help.
Hey @donotdont
Thanks for getting in touch! I took a look and this doesn't look possible at present. Looks like it would only be possible to get that data via call to the GraphQL Admin API(docs)/ REST docs.
I know this has been raised in the past by our Partner community so I'll ensure the request for this is raised with our Product teams. Thank you.