Hogger
Hogger
All the buttons. Ok, cancel and neutral. As to align with app theme the separators better be customizable as well.
The custom field approach looks execilent, it's exactly what I want to do. Thanks for the suggestion. Speaking of the example: ``` query { projects(filter: "tasks.orderByDesc(hoursEstimated).first().hoursEstimated > 0") { name...
Hmm, is it possible to add custom fields using something like GraphQLFieldAttribute? the attribute doesn't seem to support expression currently.
How to register sort after the field added? I'm using [UseSort] attribute to automatically add fields. I guess I need to manually register a sort field schema.UpdateType(type => { type.AddField("firstTasK",...
BTW it seems Sort feature doesn't respect GraphQLIgnore attribute. I tagged some fields as ignored but they still show up in the input type of sort
Because I was using UseOffsetPagingAttribute it complains the return type is not a collection when I call UseSort(). Some misalignment in schema is okay so far. The problem is Sort...
I changed to call UseSort() manually so trying to say I need to call UseOffsetPaging() manually as well. Will you consider applying the fix which uses the expression registered to...
Okay, I will make a UT to repro the issue and maybe submit a PR when I get some time. Basically scenario is: I registered a type 'Project' and then...
That makes sense. Thanks for addressing the issue
What I meant is the older one (https://www.nuget.org/packages/EntityFramework). Microsoft eventually migrated legacy ef to .Net Core (We consider .Net 5+ versions are all .Net Core versions :)) so it's cross...