├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docker-compose.yml ├── graphql_server_photo ├── Dockerfile ├── app.py ├── requirements.txt └── schema │ ├── data_interface.py │ ├── schema.graphql │ └── schema.py ├── graphql_server_review ├── Dockerfile ├── app.py ├── requirements.txt └── schema │ ├── data_interface.py │ ├── schema.graphql │ └── schema.py └── graphql_server_user ├── Dockerfile ├── app.py ├── requirements.txt └── schema ├── data_interface.py ├── schema.graphql └── schema.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /graphql_server_photo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_photo/Dockerfile -------------------------------------------------------------------------------- /graphql_server_photo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_photo/app.py -------------------------------------------------------------------------------- /graphql_server_photo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_photo/requirements.txt -------------------------------------------------------------------------------- /graphql_server_photo/schema/data_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_photo/schema/data_interface.py -------------------------------------------------------------------------------- /graphql_server_photo/schema/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_photo/schema/schema.graphql -------------------------------------------------------------------------------- /graphql_server_photo/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_photo/schema/schema.py -------------------------------------------------------------------------------- /graphql_server_review/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_review/Dockerfile -------------------------------------------------------------------------------- /graphql_server_review/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_review/app.py -------------------------------------------------------------------------------- /graphql_server_review/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_review/requirements.txt -------------------------------------------------------------------------------- /graphql_server_review/schema/data_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_review/schema/data_interface.py -------------------------------------------------------------------------------- /graphql_server_review/schema/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_review/schema/schema.graphql -------------------------------------------------------------------------------- /graphql_server_review/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_review/schema/schema.py -------------------------------------------------------------------------------- /graphql_server_user/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_user/Dockerfile -------------------------------------------------------------------------------- /graphql_server_user/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_user/app.py -------------------------------------------------------------------------------- /graphql_server_user/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_user/requirements.txt -------------------------------------------------------------------------------- /graphql_server_user/schema/data_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_user/schema/data_interface.py -------------------------------------------------------------------------------- /graphql_server_user/schema/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_user/schema/schema.graphql -------------------------------------------------------------------------------- /graphql_server_user/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaungehring/python-graphql-federation-sample/HEAD/graphql_server_user/schema/schema.py --------------------------------------------------------------------------------