当我尝试使用 apollo 客户端查询数据库时,我向我显示了类似这样的错误“GraphQL 错误:Int 类型的变量 junctionId!用于预期 bigint 的位置”
我正在尝试使用 hasura 连接作为 postgres 时间序列数据库的数据库。
export const GET_TIME = gql`
query GetTime($junctionId: Int!, $type: String!){
timeseries_vehicles_time_points(limit: 100, where: {vehicle_type: {_eq: $type}, id: {_eq: $junctionId}},order_by: {time: asc},distinct_on: time) {
data_t:time
data_y:value
}
}
`;
const car = useQuery(GET_TIME, { variables: { junctionId: `${props.junctionId}`, type: "car" } })