fix search members
All checks were successful
deploy / deploy (push) Successful in 1m9s

This commit is contained in:
2023-10-16 18:54:31 +03:00
parent 37b3391660
commit e3cf4a05ee
2 changed files with 11 additions and 13 deletions

View File

@@ -16,7 +16,7 @@ async def get_author(author_id):
}
}""",
"operation": "GetAuthorById",
"variables": {"author_id": author_id},
"variables": {"author_id": int(author_id)},
}
async with AsyncClient() as client:
response = await client.post(API_BASE, headers=headers, json=gql)