作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在我的 symfony 4 项目中实现了 api_platform,问题是我必须使用 Rest api 提供的路径来使用这样的 graphql 获取数据
{
user(id:"api/users/1")
{
id
}
}
{
user(id:1){
id
}
}
最佳答案
图书馆,如 Prisma Binding允许您使用 API 查询 GraphQL
获取 ID 为 1 的用户的示例:
const query = `
query ($userId: ID!){
user(id: $userId) {
id
name
}
}
`
const variables = { userId: '1' }
prisma.request(query, variables).then(result => console.log(result))
// {"data": { "user": { "id": "1", "name": "Sarah" } } }
关于symfony - 如何启用普通 id 查询而不是在 api_platform graphql 中使用路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50820799/
我已经在我的 symfony 4 项目中实现了 api_platform,问题是我必须使用 Rest api 提供的路径来使用这样的 graphql 获取数据 { user(id:"api/use
我是一名优秀的程序员,十分优秀!