Я пытаюсь получить информацию о своем API от GraphCMS, но я не уверен, как это сделать.
Я еще ничего не пробовал, так как не уверен, как добавить переменную в свой запрос в приложении React.
const NewsQuery = gql'
query contentView_b0488406c55f4bf5a28ceb86138c948c($first: Int, $skip: Int, $where: PostWhereInput, $orderBy: PostOrderByInput) {
contentView_content_b0488406c55f4bf5a28ceb86138c948c: postsConnection(first: $first, skip: $skip, where: $where, orderBy: $orderBy) {
edges {
node {
status
updatedAt
createdAt
id
title
slug
category
preview
body
author
date
}
}
}
}
' // (change the ' for a tilde)
И это переменная запроса: {"first":25,"skip":0,"orderBy":null,"where":{"AND":[]}}
Я ожидаю получить все данные из моего API, чтобы их можно было отобразить в моем приложении. Я использую Apollo Client.