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.
