From f71463c0215f85832aa95ab20bebf8fb39b126ca Mon Sep 17 00:00:00 2001 From: Annay Paul Date: Mon, 30 Oct 2023 18:42:59 +0600 Subject: [PATCH 1/2] [Enhancement] Added the Guild Docs as mentioned in the README.md into theguild.js file --- .../docs/orderByAlphabet/theguild.js | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 awesome-oss-docs/src/constants/docs/orderByAlphabet/theguild.js diff --git a/awesome-oss-docs/src/constants/docs/orderByAlphabet/theguild.js b/awesome-oss-docs/src/constants/docs/orderByAlphabet/theguild.js new file mode 100644 index 0000000..3ff79b0 --- /dev/null +++ b/awesome-oss-docs/src/constants/docs/orderByAlphabet/theguild.js @@ -0,0 +1,48 @@ +export default { + title: "Guild Open Source Documentation", + documentations: [ + { + title: "GraphQL Inspector Docs", + description: + "Validate schema, get schema change notifications, validate operations, find breaking changes, look for similar types, schema coverage.", + projectUrl: "https://graphql-inspector.com/docs/index", + owner: "Community Owned Documentation", + }, + { + title: "GraphQL Config Docs", + description: + "One configuration for all your GraphQL tools supported by most tools, editors & IDEs.", + projectUrl: "https://graphql-config.com/introduction", + owner: "Community Owned Documentation", + }, + { + title: "GraphQL Modules Docs", + description: "Enterprise Grade Tooling For Your GraphQL Server.", + projectUrl: "https://www.graphql-modules.com/docs/index", + owner: "Community Owned Documentation", + }, + { + title: "GraphQL Mesh Docs", + description: "Query anything, run anywhere.", + projectUrl: + "https://www.graphql-mesh.com/docs/getting-started/introduction", + owner: "Community Owned Documentation", + }, + { + title: "GraphQL Code Generator Docs", + description: + 'A tool for generating code based on a GraphQL schema and GraphQL operations "query/mutation/subscription", with flexible support for custom plugins.', + projectUrl: + "https://www.graphql-code-generator.com/docs/getting-started/index", + owner: "Community Owned Documentation", + }, + { + title: "GraphQL Tools Docs", + description: + "Build, mock, and stitch a GraphQL schema using the schema language.", + projectUrl: "https://www.graphql-tools.com/docs/introduction", + owner: "Community Owned Documentation", + }, + ], + }; + \ No newline at end of file From 59872043126fe43eee91fcfa2f09e64a77e084e1 Mon Sep 17 00:00:00 2001 From: Annay Paul Date: Mon, 30 Oct 2023 18:45:03 +0600 Subject: [PATCH 2/2] [Fix] Imported guild from theguild.js into index.js --- awesome-oss-docs/src/constants/docs/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/awesome-oss-docs/src/constants/docs/index.js b/awesome-oss-docs/src/constants/docs/index.js index 0504842..cde5cdd 100644 --- a/awesome-oss-docs/src/constants/docs/index.js +++ b/awesome-oss-docs/src/constants/docs/index.js @@ -11,6 +11,7 @@ import dropbox from "./orderByAlphabet/dropbox"; import elastic from "./orderByAlphabet/elastic"; import facebook from "./orderByAlphabet/facebook"; import google from "./orderByAlphabet/google"; +import guild from "./orderByAlphabet/theguild"; import hashicorp from "./orderByAlphabet/hashicorp"; import ibm from "./orderByAlphabet/ibm"; import jetbrains from "./orderByAlphabet/jetbrains"; @@ -39,6 +40,7 @@ export default [ elastic, facebook, google, + guild, hashicorp, ibm, jetbrains,