Enda
Enda
> The ability to toggle case sensitivity for a query using a Boolean. I've thought about this and though it would be easy enough to add, the filter input fields...
Yes, the various filters that you see are applied to the schema through the [`SchemaCRUDPlugin`](https://graphback.dev/docs/plugins/crud-schema), this is a default plugin that is automatically executed on startup. What this plugin does:...
Fully onboard with this. There was similar issue for the old runtime API - https://github.com/aerogear/graphback/issues/1025
This can be achieved simple enough from the user code: ```ts import { KnexDBDataProvider } from '@graphback/runtime-knex'; import { MongoDBDataProvider } from '@graphback/runtime-mongo'; const { typeDefs, resolvers, contextCreator } =...
> To avoid ambiguities of the queries, I second what @craicoverflow @danielrearden proposed, instead of `findTasks`, we can have `listTask`. To me `listTask` still sounds very much like you want...
My approach would be to define a `@plural` object directive, would the user can add to a model to specify the pluralized form of a model. When not defined on...
It's the only way I can think of adding this without changing names of all the queries. - Changing names of all the queries means we are no longer portable...
> We can simply include plural in schema and use it when generating schema at runtime. Include it how? By using plural form for types?
> Just checking, have the new CRUD capabilities been added in the latest release, or are we still waiting? It is not fully released yet, but a preview is available...
Thank you for creating this issue @machi1990 - this refactor has been on the cards for a while now. The current implementation is pretty hard to extend and is preventing...