Customers have the ability to created arbitrarily complex schemas but can only filter results on top-level attributes. This diminishes the value of the nested structures when querying data. This feature would allow users to use the GraphQL filtering capabilities on nested structures.
This feature would allow me to issue queries like this one. Today I cannot issue a query like this without receiving an error:
query MyQuery {
getVendia_Block(id: "000000000000001") {
transactions(filter: { _id: "017cedbb-99ef-8cb1-7d30-9ec70af5ad21"}){
_id
_owner
mutations
}
}Preformatted text
}