diff --git a/overblog/graphql-bundle/0.9/config/graphql/types/.gitignore b/overblog/graphql-bundle/0.9/config/graphql/types/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/overblog/graphql-bundle/0.9/config/packages/graphql.yaml b/overblog/graphql-bundle/0.9/config/packages/graphql.yaml new file mode 100644 index 00000000..bcab1b3d --- /dev/null +++ b/overblog/graphql-bundle/0.9/config/packages/graphql.yaml @@ -0,0 +1,11 @@ +overblog_graphql: + definitions: + schema: + query: Query + mappings: + auto_discover: false + types: + - + type: yaml + dir: "%kernel.project_dir%/config/graphql/types" + suffix: ~ diff --git a/overblog/graphql-bundle/0.9/config/routes/dev/graphql_graphiql.yaml b/overblog/graphql-bundle/0.9/config/routes/dev/graphql_graphiql.yaml new file mode 100644 index 00000000..ca32f373 --- /dev/null +++ b/overblog/graphql-bundle/0.9/config/routes/dev/graphql_graphiql.yaml @@ -0,0 +1,2 @@ +overblog_graphql_graphiql: + resource: "@OverblogGraphQLBundle/Resources/config/routing/graphiql.yml" diff --git a/overblog/graphql-bundle/0.9/config/routes/graphql.yaml b/overblog/graphql-bundle/0.9/config/routes/graphql.yaml new file mode 100644 index 00000000..0279a599 --- /dev/null +++ b/overblog/graphql-bundle/0.9/config/routes/graphql.yaml @@ -0,0 +1,2 @@ +overblog_graphql_endpoint: + resource: "@OverblogGraphQLBundle/Resources/config/routing/graphql.yml" diff --git a/overblog/graphql-bundle/0.9/manifest.json b/overblog/graphql-bundle/0.9/manifest.json new file mode 100644 index 00000000..42ec53d0 --- /dev/null +++ b/overblog/graphql-bundle/0.9/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Overblog\\GraphQLBundle\\OverblogGraphQLBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/overblog/graphql-bundle/0.9/post-install.txt b/overblog/graphql-bundle/0.9/post-install.txt new file mode 100644 index 00000000..f4b56e60 --- /dev/null +++ b/overblog/graphql-bundle/0.9/post-install.txt @@ -0,0 +1,4 @@ + Next for OverblogGraphQLBundle + 1. Define your schema, read documentation https://github.com/overblog/GraphQLBundle/blob/master/Resources/doc/definitions/index.md + 2. Browse to /graphiql + 3. Optionally dump your schema: run bin/console graphql:dump-schema