如何将数据从graphql传递到另一页?

时间:2020-07-21 05:12:02

标签: reactjs graphql client apollo

嗨,我想使用graphql将数据从另一个页面传递到这里,这是我的代码示例

const getListQuery=gql`
{
    storelist{
        id
      storeName
      storeLogoUrl
      deliveryType
      storeDescription
    }
  }`

我想将商店列表的ID作为商店ID传递给以下查询 ..

const getListQuery = gql`
      {
       
    salesdepartments(storeid:"5ef5cd9114a4659138eb8e11")
    {
      name
      id
     
      departmentProducts{
       productname
       images
       id
       price
     }
    }
  }

0 个答案:

没有答案