I'm trying to run a graphql query using neo4j-graphql jar plugin but am getting a really bizarre error I'm unable to track down.
Here's the error in plain text:
[GraphQL error]: Message: Exception while fetching data (/searchPodcast) : Invalid input 'S': expected 't/T' or 'l/L' (line 1, column 3 (offset: 2))
"CASE WHEN $content = '' THEN MATCH (n:Podcast) WHERE n.iTunesArtworkUrl600 IS NOT NULL RETURN n.LastModificationDate DESC, n.iTunesTrackCount DESC ELSE CALL db.index.fulltext.queryNodes('podcastSearch', $content) YIELD node WITH node as n RETURN n SKIP $offset LIMIT $limit END"
^, Location: [object Object], Path: searchPodcast
Any clues?