-
Notifications
You must be signed in to change notification settings - Fork 147
How to generate a query for a [String] type #221
Comments
Yup, experiencing the issue as well. |
I'm experiencing a slightly different but probably related issue. I'm parsing input types in conjunctive normal form, so I'm using lists of lists of input types. neo4j-graphql-js handled this fine in version 2.7.1 and prior, but new versions break it. A snippet from my schema:
PropertyFilters should be a list of lists, but it gets turned into a list. Something may be wrong with how neo4j-graphql-js parses lists? |
@johnymontana I noticed you had #221 on the v2.16.0 released board, but it didn't make it into the release. Looking at the release board, it looks #350 and #221 are related -> both are stating DB users cannot query arrays. Can you share when you plan to release this? How this issue effects me: When do you think you'll get #350 and #221 released? Its kinda super important to me and the community Thank you ❤️ |
@johnymontana hi, checking in, would you mind replying to my question above? As a quick reminder...(with emphasis)... Developers cannot query Arrays.As a user who is building a production-grade system on this, I consider this a I'd like to politely request you consider this issue as the #1 priority. Can you share where you and team are on the issue? When can we expect a patch? Its super important to me and the community. 🙏 Thank you @johnymontana |
I have a schema that has nodes with properties that are arrays of Strings (
[String]
). This gets parsed properly by the type generator, but the autogenerated query just expects the base type (e.g.String
), and doesn't properly use the CypherIN
directive (it just performs a regular filter operation). Is there any way to fix this in the configuration, or do I need to write custom queries for everything that uses these filter fields?Example Schema:
Sample of the Query generated in the playground schema explorer:
Am I missing something here? Thanks!
The text was updated successfully, but these errors were encountered: