Интегрируйте призменные графические запросы с ariadne
Я написал некоторую схему graphql и развернул ее, используя призму. Призма породила некоторые .graphql
файл с type Query
, type Mutation
, type Subscription
, Есть сервер призмы, работающий от докера, который связывается с базой данных MySQL. Теперь я хотел бы написать некоторые функции API с использованием Ariadne и связаться с базой данных с помощью запросов Prisma. Как мне этого добиться?
Схема GraphQL предоставляется для призмы
datamodel.prisma
type User {
id: ID! @id
name: String!
}
Пример сгенерированного файла graphql
prisma.graphql
type Query {
user(where: UserWhereUniqueInput!): User
users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
usersConnection(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): UserConnection!
node(id: ID!): Node
}
Фрагмент кода API с использованием ariadne, пытающегося подключиться к базе данных
Я пытаюсь казнить users
запрос, т.е. получение всех пользователей из базы данных.
api.py
from ariadne import gql, load_schema_from_path, QueryType, make_executable_schema
from ariadne.asgi import GraphQL
schema_files_path = "/root/manisha/prisma/generated/prisma.graphql"
schema = load_schema_from_path(schema_files_path)
query = QueryType()
@query.field("users")
def resolve_users(_, info):
...
schema = make_executable_schema(schema, query)
app = GraphQL(schema, debug=True)
Запуск сервера с помощью Uvicornuvicorn api:app --reload --port 7000
Я могу получить всех пользователей на игровой площадке, используя запрос ниже.
{
users{
name
id
}
}
Скриншот площадки Prisma для получения всех пользователей из базы данных
Попробовать то же самое с Ариадной resolve_users
распознаватель не работает.
Давать мне ниже ошибки:
ERROR: Expected Iterable, but did not find one for field Query.users.
GraphQL request (2:3)
1: {
2: users {
^
3: id
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 675, in complete_value_catching_error
return_type, field_nodes, info, path, result
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 750, in complete_value
result,
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 766, in complete_value
cast(GraphQLList, return_type), field_nodes, info, path, result
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 807, in complete_list_value
"Expected Iterable, but did not find one for field"
TypeError: Expected Iterable, but did not find one for field Query.users.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 351, in execute_operation
)(type_, root_value, path, fields)
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 441, in execute_fields
parent_type, source_value, field_nodes, field_path
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 612, in resolve_field
field_def.type, field_nodes, info, path, result
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 688, in complete_value_catching_error
self.handle_field_error(error, field_nodes, path, return_type)
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 703, in handle_field_error
raise error
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 675, in complete_value_catching_error
return_type, field_nodes, info, path, result
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 750, in complete_value
result,
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 766, in complete_value
cast(GraphQLList, return_type), field_nodes, info, path, result
File "/usr/local/lib/python3.6/dist-packages/graphql/execution/execute.py", line 807, in complete_list_value
"Expected Iterable, but did not find one for field"
graphql.error.graphql_error.GraphQLError: Expected Iterable, but did not find one for field Query.users.
1 ответ
Поскольку prisma еще не поддерживает клиент для Python, приведенный ниже код помогает в качестве обходного пути для связи с сервером Prisma из Ариадны.
from ariadne import gql, load_schema_from_path, QueryType, make_executable_schema
from ariadne.asgi import GraphQL
import requests
prisma_url = "your-prisma-endpoint"
schema_files_path = "/root/manisha/prisma/generated/prisma.graphql"
schema = load_schema_from_path(schema_files_path)
query = QueryType()
def make_call_to_prisma(info):
data = info.context["request"]._body
resp = requests.post(
url=prisma_url, headers={"content-type": "application/json"}, data=data
)
return resp
@query.field("users")
def resolve_users(_, info, where=None):
result = make_call_to_prisma(info)
print(result.json())
return result.json()["data"]["users"]
schema = make_executable_schema(schema, query)
app = GraphQL(schema, debug=True)