将变量传递到gql中的where中

时间:2019-10-26 19:16:20

标签: graphql gql

我正在做一个小项目,我有很多东西,我想能够在客户端进行过滤

am将信息存储在react组件状态并将其作为变量传递到查询中,我想在gql查询中定义它们

我知道这是错误的,但这可以解释我的需求

const ALL_ITEMS_QUERY = gql`
  query ALL_ITEMS_QUERY($where: { $title_contains: String } $skip:Int = 0) {
    items(where: { title_contains: $title_contains },skip:$skip,orderBy:createdAt_DESC) {
      id
      title
      price

    }
  }
`;

0 个答案:

没有答案