We should add the ability to filter the fields that are selected in queries.
Possible solutions are:
- Only include only these selected fields
@GraphQLQuery(value = "field", select = {
@GraphQLInclude("subSelection")
})
public Field getField();
- Exclude all of these fields
@GraphQLQuery(value = "field", exclude = {
@GraphQLExclude("subSelection")
})
public Field getField();
We should add the ability to filter the fields that are selected in queries.
Possible solutions are: