What is the proper way of sending single item graphql requests in Gatsby/React?Im unable to perfrorm such request

System Information
  • Strapi Version 4.2:
  • Operating System windows:
  • Database sqllite:
  • Node Version 16:
  • NPM Version:
  • Yarn Version:

Im able to perform multiple item requests like so

** const data = useStaticQuery(graphql`
    query {
      allStrapiDestination {
        edges {
          node {
            id
            location
          }
        }
      }
    }
  `);**```

I tried getting a single item like this

const data = useStaticQuery(graphql`

query {

  strapiDestination(data: { elemMatch: { id: { eq: 4 } } }) {

    data {

      id

      attributes {

        location

        destination

      }

    }

  }

}

`);

But it doest work.I get 
  GraphQLError: Unknown argument "data" on field 
"Query.strapiDestination".  Any tips are appreciated. Thank you.