You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the graphQL query contains a filter with a numeric value, the query will not return any results because the converted open cypher query parameter value will be a string, not a numeric value.
Example (note that runways value is numeric 2):
query MyQuery {
getNodeAirports(filter: {runways: 2}) {
type
city
icao
code
country
lat
longest
runways
desc
lon
region
elev
}
}
Resolver outputs this open cypher query (note the quotes around the runways value 2) :
andreachild
changed the title
Query returns no results if filter contains numeric value
Query does not return results if filter contains numeric value
Jan 29, 2025
If the graphQL query contains a filter with a numeric value, the query will not return any results because the converted open cypher query parameter value will be a string, not a numeric value.
Example (note that runways value is numeric
2
):Resolver outputs this open cypher query (note the quotes around the runways value
2
) :The text was updated successfully, but these errors were encountered: