├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── renovate.json5 ├── GraphQL.ideplugin └── Contents │ ├── Info.plist │ └── Resources │ └── GraphQL.xcplugindata ├── GraphQL.xclangspec ├── LICENSE ├── README.md ├── Xcode.SourceCodeLanguage.GraphQL.plist ├── setup-xcode11.sh └── setup.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /GraphQL.ideplugin/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/GraphQL.ideplugin/Contents/Info.plist -------------------------------------------------------------------------------- /GraphQL.ideplugin/Contents/Resources/GraphQL.xcplugindata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/GraphQL.ideplugin/Contents/Resources/GraphQL.xcplugindata -------------------------------------------------------------------------------- /GraphQL.xclangspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/GraphQL.xclangspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/README.md -------------------------------------------------------------------------------- /Xcode.SourceCodeLanguage.GraphQL.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/Xcode.SourceCodeLanguage.GraphQL.plist -------------------------------------------------------------------------------- /setup-xcode11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/setup-xcode11.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/xcode-graphql/HEAD/setup.sh --------------------------------------------------------------------------------