How did you get your query to be named AllMessages? All I can see is a Messages class...
Do you have a more detailed video on how to create queries and how to pull it from the DB?
Yokhen
good start for django+graphql beginners
rockyli
preferred this over apollo server coz of its build on top of django frameworks includes almost everything like User/Admin UI
joseninocapati
good talk.
I've been trying to use django-filters with graphene to filter on a datetimefield, but also get specific indices. So something like...
{
Data(date_created__gt=<datetime>, start=10, end=20) {
id
}
}
to get Data objects 10 through 19.
Any ideas? I'm just not sure how to do the indexing
Brianjp
Please someone help, I am currently using django3 in a school management project and soething is definetely wrong but i cannot trace it.Am getting the error
ImportError at /graphql
Could not import 'src.schema.schema' for Graphene setting 'SCHEMA'. ModuleNotFoundError: No module named 'src'.
Here is my SETTINGS.PY
GRAPHENE = {
'SCHEMA': 'src.schema.schema'
}
devngecu
mutate parameters changed at 2.0 version graphene, if your have any doublt check documentation: