I'm trying to organize my query in such way
public class RootQueryType : ObjectType
{
protected override void Configure(IObjectTypeDescriptor descriptor)
{
descriptor.Include<UserQuery>().Name("userQuery");
descriptor.Include<MessageQuery>().Name("messageQuery");
}
}
But in my Altair playground I end up with this:
There is no userQuery
, but I still can query fields from it. I think that it is not the way Include should work and I'm looking for a way to get messageQuery and userQuery separated.