嗨,我想使用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
}
}
}