Hello
Im trying implement fulfillment service app and everything work ok before this step
‘query requests the fulfillment order destination, line item and line item SKUs’
Im trying to request orders withi this code
query {
shop {
assignedFulfillmentOrders(first: 10, assignmentStatus: FULFILLMENT_REQUESTED) {
edges {
node {
id
destination {
firstName
lastName
address1
city
province
zip
countryCode
phone
}
lineItems(first: 10) {
edges {
node {
id
lineItem {
name
sku
}
remainingQuantity
}
}
}
merchantRequests(first: 10, kind: FULFILLMENT_REQUEST) {
edges {
node {
message
}
}
}
}
}
}
}
}
And expect to get result
{
“data”: {
“shop”: {
“assignedFulfillmentOrders”: {
“edges”: […
But Im getting
{
"data": null,
"errors": [
{
"message": "[\"The api_client is not associated with any fulfillment service.\"]",
"locations": [
{
"line": 3,
"column": 5
}
],
"path": [
"shop",
"assignedFulfillmentOrders"
]
}
],
Additional info:
All permissions are granted to my app via GraphQL explorer
Im using 2022-01(Latest) API
Another thing: REST API works well… But what about GraphQL?
So, looks like this is Shopify bug. Or?