Soy nuevo en Graphql, para una consulta necesito aplicar filtros. como seguí con este problema https://github.com/hasura/graphql-engine/issues/2355 , decidí pasar la cláusula where en sí misma dinámicamente como una variable. pero estoy recibiendo
Expected Name, foundAquí está mi código
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" });esto es .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 } }Estoy tratando de implementar de una manera que, si el filtro no se aplica, ni siquiera debería permitir que la cláusula graphql where alcance esa condición.