We have a query like this that works as expected:
query GetItems($getItemsInput: GetItemsInput!) {
getItems(getItemsInput: $getItemsInput) {
uuid
user {
firstName
lastName
}
}
}
But when I use a fragment with the same inputs, the “user” comes back null (uuid is there both ways)
query GetItems($getItemsInput: GetItemsInput!) {
getItems(getItemsInput: $getItemsInput) {
...ItemsRow
}
}
fragment ItemsRow on Item {
uuid
user {
firstName
lastName
}
}
Any ideas on why and/or where we should look to figure this out? This is using the Playground as the client.