Most GraphQL Schemas, have queries to get the results, and other to get the total Count of records, this is for pagination, and knowing the total amount of data, without retrieving the data, here there's an example:
{
Employees(
filter: { OR: [...
I think I found a work around for this, using this other proc:
call apoc.meta.subGraph({ labels: ['Employee', 'Team', 'Role'] })
With this one, we can filter by Labels, or by Relationships
I think this is very needed, in SQL Server, when you generate a DB Schema, you select the tables you wanna add to your schema. Displaying a full DB schema, is only useful for demos, not for real world scenarios, Neo4j, please add this feature. Mayb...