cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

erikmiller
Node
since ‎11-13-2018
‎06-01-2022

User Statistics

  • 5 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I need help optimizing the following query. MATCH (p:Program)-[ao:AIRS_ON]->(t:Timeslot) WITH p, min(t.gmtDateTime) as minTs MATCH (p1:Program)-[ao1:AIRS_ON]->(t1:Timeslot) WHERE t1.gmtDateTime = minTs RETURN p1,t1,minTs ORDER BY t1.gmtDateTime LIMI...
I have created a simple schema for testing. I know neo4j-graphql automatically adds some addiitonal args such as orderBy and filter as well as args for each node property. Below is a simple object that is part of the schema type Channel { id: ID...