Hi,
We have Shopify Plus and currently retrieve users using the REST Admin API.
We would like to transition to retrieving users via the GraphQL Admin API.
Could you guide us on how to achieve this?
Hi,
We have Shopify Plus and currently retrieve users using the REST Admin API.
We would like to transition to retrieving users via the GraphQL Admin API.
Could you guide us on how to achieve this?
If you App has read_users scope then this query should work:
query GetStoreUsers {
staffMembers(first: 10) {
edges {
node {
id
email
firstName
lastName
}
}
}
}