Closed colinhacks closed 1 year ago
That's great. Most queries make more sense on the file workflow. And it makes queries independently testable and portable to use in a project with another language
No autocomplete or type checking until LSP lands Isn't it possible to introspect the type of a query using edgedb?
No autocomplete or type checking until LSP lands
I'm referring to the experience of writing the EdgeQL queries themselves in a *.edgeql
file. Currently the IDE extensions we provide do highlighting but no autoformatting or autocompletion (they're not schema-aware either).
But the generated client would certainly be strongly typed.
I like the proposal. +1
Few comments:
npx edgeql-js --generator queries: generates just queries In this case npx edgeql-js --generator qb would generate the query builder and just npx edgeql-js would generate both
+1 for this flow.
There would also be a --watch mode to re-generate whenever a .edgeql file is updated.
Yes, we should also create a simple extension for VSCode eventually.
No complex params types. In the query builder we allow arbitrarily complex param types ine.params. The values are automatically serialized to JSON client side, passed as a JSON param, and re-cast in the generated query. This makes it possible to pass complex, strongly-typed objects directly into .run which is a big win for mutations.
Like passing tuples in?
Index file for convenience
Potentially .edgeql
can be in different directories. Will we reflect dir structure in names? If not there can be potential for conflicts.
Like passing tuples in?
Exactly. Parameter types would be limited to what EdgeQL actually supports (go figure).
Potentially .edgeql can be in different directories. Will we reflect dir structure in names? If not there can be potential for conflicts.
Oops, meant to clarify this. I think we should flatten all the queries to one level and throw an informative error if there's a naming conflict. Reflecting the dir structure would make imports ugly and verbose. Also, this encourages more descriptive query names, which I think is desirable.
Oops, meant to clarify this. I think we should flatten all the queries to one level and throw an informative error if there's a naming conflict.
Hm, this would make my preferred project organization painful. I like using things like css modules and keeping related css/backend/frontend pieces close. I'd hate if the system forces me to have only globally unique query names. So i'm -1 on this.
I'm earnestly for this, the proposed workflow here would make parsing and extrapolating the typings for schema infinitesimally easier. The only thing that concerns me, as @1st1 mentioned is flattening queries to one level
In addition to the current approach (reflecting EdgeQL and the EdgeDB typesystem into a query builder API), I propose a more GraphQL-like workflow.
*.edgeql
filesQueries are written as plain EdgeQL inside
*.edgeql
filesNew
npx
commandAn
npx
command that scans the project file tree for.edgeql
files, reads the contents, and pings the database to retrieve type information about the queries' result type and parameter types.Candidates:
npx edgeql-js --generator queries
: generates just queriesnpx edgeql-js --generator qb
would generate the query builder and justnpx edgeql-js
would generate bothedbgen
repo*.edgeql
files:npx edbgen --generator edgeql
npx edbgen --generator querybuilder
For each
.edgeql
file, a new file is generated with the following structure.The generated query can be consumed like so:
Watch mode
There would also be a
--watch
mode to re-generate whenever a.edgeql
file is updated.Target
The target (
.ts
vs.js
vs.mjs
) is still determined using the same resolution algorithm as the currentnpx edgeql-js
command.Output directory
The output directory can be specified with the
--out-dir
flag. The default is./dbschema/queries
directory, as resolved relative to the project root. If two query files share the same name, an error will be thrown.Index file for convenience
For convenience, an
index.{j|t}s
file should be generated into thedbschema/queries
directory that re-exports all generated queries.This makes it easier to import all queries with a single
import
.Benefits
excessively deep
, inference limitations, etc.Cons
e.params
. The values are automatically serialized to JSON client side, passed as a JSON param, and re-cast in the generated query. This makes it possible to pass complex, strongly-typed objects directly into.run
which is a big win for mutations.select *
(until it lands in EdgeQL). This isn't implement yet in QB but will be.