Skip to content
Discussion options

You must be logged in to vote

You can use "_ilike" operator instead of "_similar":

Reference

Here is a sample query and response:

query MyQuery2 {
  Album(where: {Title: {_ilike: "%For%"}}) {
    ArtistId
    Title
  }
}
"data": {
    "Album": [
      {
        "ArtistId": 1,
        "Title": "For Those About To Rock We Salute You"
      },
      {
        "ArtistId": 82,
        "Title": "King For A Day Fool For A Lifetime"
      },
      {
        "ArtistId": 88,
        "Title": "Appetite for Destruction"
      },

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by adas98012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants