Probably the latest as exposed by
https://dgraph.io/graphql
NA
Not sure
Execute query to check if results are returned

Modify the query to use this GraphQL query in GraphiQL
query {
queryLocation(
filter: { name: {eq: "Bangalore"} }
) {
...locationFragment
}
}
fragment locationFragment on Location {
name
featured_in_films (
order: { desc: initial_release_date },
first: 3
) {
name
initial_release_date
featured_locations {
name
}
}
}

Expected Behaviour should be same as the results of the query without the named fragment
Thanks for reporting.
Fragments currently work in schema introspection queries, but not in regular queries.
It's not great to have it like this, I'll prioritise this to get added.
Most helpful comment
Thanks for reporting.
Fragments currently work in schema introspection queries, but not in regular queries.
It's not great to have it like this, I'll prioritise this to get added.