Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabienheureux/django-graphene-m2m
https://github.com/fabienheureux/django-graphene-m2m
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fabienheureux/django-graphene-m2m
- Owner: fabienheureux
- Created: 2020-07-16T09:12:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T11:09:47.000Z (about 2 years ago)
- Last Synced: 2024-11-06T09:20:56.108Z (about 2 months ago)
- Language: Python
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Debug graphene with m2m
1. Run `pip install -r requirements.txt` or `poetry install` in order to install dependencies
2. Run `./manage.py migrate` in `app` directory
3. Run `./manage.py runserver` in `app` directory
4. Go to graphiql [http://localhost:800n0/graphql#query=%7B%0A%20%20allProperties%20%7B%0A%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20photos%20%7B%0A%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20url%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A][1] and hit the play button[1]: http://localhost:800n0/graphql#query=%7B%0A%20%20allProperties%20%7B%0A%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20photos%20%7B%0A%20%20%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%20%20%20%20url%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A
5. Go to [silk dashboard](http://localhost:8000/silk/request/) and you can see that a request without objects in db takes a few milliseconds to run