diff --git a/overblog/graphql-bundle/0.11/post-install.txt b/overblog/graphql-bundle/0.11/post-install.txt index 69b901c2..cdf18542 100644 --- a/overblog/graphql-bundle/0.11/post-install.txt +++ b/overblog/graphql-bundle/0.11/post-install.txt @@ -1,4 +1,4 @@ Next for OverblogGraphQLBundle - 1. Define your schema, read documentation https://github.com/overblog/GraphQLBundle/blob/master/Resources/doc/definitions/index.md + 1. Define your schema, read documentation https://github.com/overblog/GraphQLBundle/blob/0.11/docs/definitions/index.md 2. If you want to see your dumped schema (really not necessary for bootstrap): run bin/console graphql:dump-schema 3. If you want to have GraphiQL to browse your API run: composer req --dev overblog/graphiql-bundle diff --git a/overblog/graphql-bundle/0.12/config/graphql/types/.gitignore b/overblog/graphql-bundle/0.12/config/graphql/types/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/overblog/graphql-bundle/0.12/config/packages/graphql.yaml b/overblog/graphql-bundle/0.12/config/packages/graphql.yaml new file mode 100644 index 00000000..a4aff168 --- /dev/null +++ b/overblog/graphql-bundle/0.12/config/packages/graphql.yaml @@ -0,0 +1,10 @@ +overblog_graphql: + definitions: + schema: + query: Query + mappings: + types: + - + type: yaml + dir: "%kernel.project_dir%/config/graphql/types" + suffix: ~ diff --git a/overblog/graphql-bundle/0.12/config/routes/graphql.yaml b/overblog/graphql-bundle/0.12/config/routes/graphql.yaml new file mode 100644 index 00000000..0279a599 --- /dev/null +++ b/overblog/graphql-bundle/0.12/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.12/manifest.json b/overblog/graphql-bundle/0.12/manifest.json new file mode 100644 index 00000000..42ec53d0 --- /dev/null +++ b/overblog/graphql-bundle/0.12/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Overblog\\GraphQLBundle\\OverblogGraphQLBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/overblog/graphql-bundle/0.12/post-install.txt b/overblog/graphql-bundle/0.12/post-install.txt new file mode 100644 index 00000000..b1cdc9d1 --- /dev/null +++ b/overblog/graphql-bundle/0.12/post-install.txt @@ -0,0 +1,4 @@ + Next for OverblogGraphQLBundle + 1. Define your schema, read documentation https://github.com/overblog/GraphQLBundle/blob/master/docs/definitions/index.md + 2. If you want to see your dumped schema (really not necessary for bootstrap): run bin/console graphql:dump-schema + 3. If you want to have GraphiQL to browse your API run: composer req --dev overblog/graphiql-bundle diff --git a/overblog/graphql-bundle/0.9/post-install.txt b/overblog/graphql-bundle/0.9/post-install.txt index f4b56e60..96491fa1 100644 --- a/overblog/graphql-bundle/0.9/post-install.txt +++ b/overblog/graphql-bundle/0.9/post-install.txt @@ -1,4 +1,5 @@ Next for OverblogGraphQLBundle - 1. Define your schema, read documentation https://github.com/overblog/GraphQLBundle/blob/master/Resources/doc/definitions/index.md + 1. Define your schema, read documentation https://github.com/overblog/GraphQLBundle/blob/0.9/Resources/doc/definitions/index.md or + https://github.com/overblog/GraphQLBundle/blob/0.10/Resources/doc/definitions/index.md 2. Browse to /graphiql 3. Optionally dump your schema: run bin/console graphql:dump-schema