Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

238
Views
Expected Name, found ! Graphql when passing dynamic where through variables

I am new to Graphql, for a query I need to apply filters. as I followed up with this issue https://github.com/hasura/graphql-engine/issues/2355, I decided to pass the where clause itself dynamically as a variable. But am getting

Expected Name, found 

Here is my code

const where = {
 ...(condition1 ? {created_at: { created_at: { _in: this.startDate } }  } : {}),
  ...(condition2 ? {payment: { source: { _in: this.selectedStore } }  } : {}),
}

const { data } = await this.$apollo.query({
  query: orders_by_storeid_and_creation_time,
  variables: {
    where
  },
  fetchPolicy: "no-cache"
});

this is .gql

interface orders_filter_type{
  created_at:! any;
  payment:!any
 }

 query orders_by_storeid_and_creation_time(
   $where:orders_filter_type
   //tried $where:[orders_filter_type] 
   //tried $where:any 
 ) {
 orders(
  where:where
 ) {
   ...someFragment
  }
}

I am trying to implement in a way that, if the filter is not applied it shouldn't even let the graphql where clause to reach that condition.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!