pmantica1

Results 30 comments of pmantica1

No problem and thanks a lot for the prompt reply. I think I am going to use an arraysize of 10000. Here are some more specifics on the data/querying. So...

https://pkg.go.dev/github.com/godror/godror?tab=doc The Oracle Go driver seems to have a DefaultArraySize of 1024.

Fair point about the execution time. If the execution time is just the time to run `cursor.execute(query)` then I found it be a negligible 0.08 seconds when running against both...

I am completely in support of this enhancement. However, certain class/function names such as `DirectEdgeDescriptor` only make sense within the context of the file where the class/function is defined. In...

I think that the best option to me seems to make primary keys optional and disable the features that require primary keys. I think that `@fold` and `@recurse` depending on...

There is currently such a section: https://graphql-compiler.readthedocs.io/en/latest/supported_databases/sql.html#sql-edges I do think that the current information is not the best. Specifically, I think that we should mention that before adding custom edges...

The `SQLAlchemySchemaInfo` and `SQLSchemaInfo` are almost identical externally except for the constructor. The `SQLAlchemySchemaInfo` takes in a `schema` and `type_equivalence_hints` and the `SQLSchemaInfo` takes in a `generic_schema_info`. If we are...

Updating the GraphQL core version will not fix this issue. The interfaces implemented by an object are still delimited by "," and not "&" as shown in the link below....

Are you sure we can sort without outputting in SQL? I haven't found any examples online where people do so. Also, I prefer: `directive @sort(ascending: Bool!, rank: Int) on FIELD`...