Exceptions
Any errors during resolution of a GraphQL query are returned as part of the API response.
Authorization Error
product(id: "8S-DEMO-Polohemd-1") {
similarProducts(first: 5) {
edges {
node {
id
}
}
}
}
}curl --request POST \
--url https://api.8select.io/graphql \
--header 'Content-Type: application/json' \
--data '{"query":"query {\n product(id: \"8S-DEMO-Polohemd-1\") {\n similarProducts(first: 5) {\n edges {\n node {\n id\n }\n }\n }\n }\n}\n"}'Validation Error
Last updated
Was this helpful?