Andreas Berger

Results 43 issues of Andreas Berger

Currently the cursor based paging is converted to offset based paging at graphql-server-side. A Cursor: - looks like `YXJyYXljb25uZWN0aW9uOjE=` - which decodes to `arrayconnection:1` - which results in `offset` 2...

feature request

I suggest to add `PUSH` and `POP` operations to array fields of custom scalars and enums. Schema: ```graphql scalar CustomScalar enum E { foo, bar } type Movie { id:...

feature request
small

With the deprecation of the old index handling, the following field is generated: ```graphql moviesAggregate( fulltext: MovieFulltext @deprecated(reason : "This argument has been deprecated and will be removed in version...

feature request

Given the following schema: ```graphql type Movie { id: ID test: [String!] } ``` the following additional where-fields should get generated: ```grapqhl input MovieWhere { test_INCLUDES_SOME: [String!] test_INCLUDES_ALL: [String!] test_INCLUDES_NONE:...

feature request

Is there a plan to support neo4j 5.x with this library?

# Overview This PR introduces a new feature allowing users to configure spatial indexes in Neo4j Spatial. Previously, it was not possible to index the same Node with two separate...

enhancement

This PR adds a function `spatial.convert.nativeToWkt` to convert native points to WKT: ```cypher return spatial.convert.nativeToWkt(point({longitude: 1, latitude: 2})) as wkt ``` returns: ``` POINT ( 1 2 ) ``` ---...

enhancement

This PR adds a new spatial function `spatial.convert.wktToGeoJson` to convert WKT to Geo-JSON. ```cypher return spatial.convert.wktToGeoJson("MULTIPOLYGON(((15.3 60.2, 15.3 60.4, 15.7 60.4, 15.7 60.2, 15.3 60.2)))") as json ``` returns an...

enhancement

This introduces a new Encoder that allows to index native point arrays like this: ```cypher CREATE (node:Foo { points: [point({latitude: 5.0, longitude: 4.0}), point({latitude: 6.0, longitude: 5.0})]}); CALL spatial.addLayer('line','NativePoints','points') YIELD...

enhancement