{"commit":"a8d4907c1518c31ea6a99779cc8ae9a647092637","old_file":"app\/graphql\/fullGame.graphql","new_file":"app\/graphql\/fullGame.graphql","old_contents":"query FullGame($id: String) {\n game(_id: $id) {\n title,\n shortDescription,\n descriptionState,\n thumbnail,\n coverImage\n }\n}\n","new_contents":"query FullGame($id: String) {\n game(_id: $id) {\n coverImage,\n descriptionState,\n developerIds,\n genre,\n macBuild,\n releaseStatus,\n screenshots,\n shortDescription,\n tags,\n title,\n thumbnail,\n trailer,\n windowsBuild,\n }\n}\n","subject":"Update query for full game with all fields","message":"Update query for full game with all fields\n","lang":"GraphQL","license":"mit","repos":"cdiezmoran\/AlphaStage-2.0,cdiezmoran\/AlphaStage-2.0"} {"commit":"f02205a7372957384d90a7947a680c6b7c36ab3f","old_file":"src\/default-schema.graphql","new_file":"src\/default-schema.graphql","old_contents":"# This is sample IDL schema for GraphQL Faker.\n#\n# There are two directives you can use to enhance fake data:\n# - @fake\n# - @examples\n# Each directive has autocompletion working so start by typing @\n#\n# Press save or Cmd+Enter to apply the changes and update server. Switch to GraphiQL\n# on the right panel to immidiatelly test your changes.\n# This tool also supports extending existing APIs. Check graphql-faker --help\n#\n# Developed with ❤️ by APIs.guru | https:\/\/github.com\/APIs-guru\/graphql-faker\n\ntype Company {\n name: String @fake(type:companyName)\n industry: String @examples(values: [\"IT\", \"Manufactury\", \"Medicine\", \"Media\"])\n employees: [Employee!]\n}\n\ntype Employee {\n firstName: String @fake(type: firstName, locale:en_CA)\n lastName: String @fake(type: lastName, locale:en_CA)\n address: String @fake(type:streetAddress, options: { useFullAddress: true })\n subordinates: [Employee!]\n company: Company\n}\n\ntype Query {\n employee(id: ID): Employee\n company(id: ID): Company\n allCompanies: [Company!]\n}\n","new_contents":"# This is sample IDL schema for GraphQL Faker.\n#\n# There are two directives you can use to enhance fake data:\n# - @fake\n# - @examples\n# Each directive has autocompletion working so start by typing @\n#\n# Press save or Cmd+Enter to apply the changes and update server. Switch to GraphiQL\n# on the right panel to immidiatelly test your changes.\n# This tool also supports extending existing APIs. Check graphql-faker --help\n#\n# Developed with ❤️ by APIs.guru | https:\/\/github.com\/APIs-guru\/graphql-faker\n\ntype Company {\n name: String @fake(type:companyName)\n industry: String @examples(values: [\"IT\", \"Manufacturing\", \"Medicine\", \"Media\"])\n employees: [Employee!]\n}\n\ntype Employee {\n firstName: String @fake(type: firstName, locale:en_CA)\n lastName: String @fake(type: lastName, locale:en_CA)\n address: String @fake(type:streetAddress, options: { useFullAddress: true })\n subordinates: [Employee!]\n company: Company\n}\n\ntype Query {\n employee(id: ID): Employee\n company(id: ID): Company\n allCompanies: [Company!]\n}\n","subject":"Fix typo, reported by @chookie","message":"chore: Fix typo, reported by @chookie\n","lang":"GraphQL","license":"mit","repos":"APIs-guru\/graphql-faker,APIs-guru\/graphql-faker,APIs-guru\/graphql-faker"} {"commit":"56f52abb10c149ae856c1e2ba808a9adc3e4e7e2","old_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubTrendingQuery.graphql","new_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubTrendingQuery.graphql","old_contents":"query GitHubSearch($queryString: String!, $firstCount: Int!, $order: LanguageOrder!) {\n search(query: $queryString, type: REPOSITORY, first: $firstCount) {\n repositoryCount\n nodes {\n ... on Repository {\n name\n createdAt\n description\n id\n languages(first: 1, orderBy: $order) {\n nodes {\n name\n }\n }\n licenseInfo {\n name\n }\n owner {\n login\n }\n stargazers {\n totalCount\n }\n url\n }\n }\n }\n}\n","new_contents":"query GitHubSearch($queryString: String!, $firstCount: Int!, $order: LanguageOrder!) {\n search(query: $queryString, type: REPOSITORY, first: $firstCount) {\n repositoryCount\n nodes {\n ... on Repository {\n name\n createdAt\n description\n homepageUrl\n id\n languages(first: 1, orderBy: $order) {\n nodes {\n name\n }\n }\n licenseInfo {\n name\n }\n owner {\n login\n }\n stargazers {\n totalCount\n }\n url\n }\n }\n }\n}\n","subject":"Add homepageUrl for later investigation","message":"Add homepageUrl for later investigation\n\nThis could be a good candidate for long clicks or something in github items. Not sure how best to handle it yet\n","lang":"GraphQL","license":"apache-2.0","repos":"hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp"} {"commit":"fca091434dd18aab255b31d44527d1b65887e5f1","old_file":"test-resources\/testData\/graphql\/injection\/injectedTemplates\/injectedTemplates.graphql","new_file":"test-resources\/testData\/graphql\/injection\/injectedTemplates\/injectedTemplates.graphql","old_contents":"type SomeType {\n id(arg: String): ID\n}\n\nquery Departments($arg: String) @Dir(arg: ) {\n users(filter: {name : , addresses : [\"abc\"]}) {}\n}\n\ndirective @Dir(arg: String) on QUERY\n\ntype Query {\n users(filter: UserFilter): [User]\n}\n\ninput UserFilter {\n name: String\n addresses: [String!]\n}\n\ntype User {\n id: ID\n name: String\n phone: String\n}\n","new_contents":"type SomeType {\n id(arg: String): ID\n}\n\nquery Departments($arg: String) @Dir(arg: ) {\n users(filter: {name: , addresses: [\"abc\"]}) {}\n}\n\ndirective @Dir(arg: String) on QUERY\n\ntype Query {\n users(filter: UserFilter): [User]\n}\n\ninput UserFilter {\n name: String\n addresses: [String!]\n}\n\ntype User {\n id: ID\n name: String\n phone: String\n}\n","subject":"Fix arguments whitespaces in GraphQLInjectionHighlightingTest","message":"Fix arguments whitespaces in GraphQLInjectionHighlightingTest\n","lang":"GraphQL","license":"mit","repos":"jimkyndemeyer\/js-graphql-intellij-plugin,jimkyndemeyer\/js-graphql-intellij-plugin,jimkyndemeyer\/js-graphql-intellij-plugin"} {"commit":"0973a4ca03e72220d47e5794e72089577db8b40e","old_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepositoryByNameAndOwner.graphql","new_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepositoryByNameAndOwner.graphql","old_contents":"query RepositoryByNameAndOwner($owner: String!, $name: String!) {\n nodes(owner: $owner, name: $name) {\n ... on Repository {\n id\n }\n }\n}\n","new_contents":"query RepositoryByNameAndOwner($owner: String!, $name: String!) {\n repository(owner: $owner, name: $name) {\n ... on Repository {\n id\n }\n }\n}\n","subject":"Fix query name for repo lookup","message":"Fix query name for repo lookup\n","lang":"GraphQL","license":"apache-2.0","repos":"hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp"} {"commit":"c810b811a8a88999cc99b01e736bf569b7764f61","old_file":"src\/AnimeClient\/API\/Kitsu\/Queries\/GetUserHistory.graphql","new_file":"src\/AnimeClient\/API\/Kitsu\/Queries\/GetUserHistory.graphql","old_contents":"query ($slug: String!) {\n\tfindProfileBySlug(slug: $slug) {\n\t\tlibraryEvents(first: 100, kind: [PROGRESSED, UPDATED]) {\n\t\t\tnodes {\n\t\t\t\tid\n\t\t\t\tchangedData\n\t\t\t\tkind\n\t\t\t\tlibraryEntry {\n\t\t\t\t\treconsumeCount\n\t\t\t\t\treconsuming\n\t\t\t\t\tprivate\n\t\t\t\t\tnotes\n\t\t\t\t}\n\t\t\t\tmedia {\n\t\t\t\t\t__typename\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\tposterImage {\n\t\t\t\t\t\tviews {\n\t\t\t\t\t\t\twidth\n\t\t\t\t\t\t\theight\n\t\t\t\t\t\t\turl\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\ttitles {\n\t\t\t\t\t\talternatives\n\t\t\t\t\t\tcanonical\n\t\t\t\t\t\tlocalized\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tupdatedAt\n\t\t\t}\n\t\t}\n\t}\n}","new_contents":"query ($slug: String!) {\n\tfindProfileBySlug(slug: $slug) {\n\t\tlibraryEvents(first: 100, kind: [PROGRESSED, UPDATED], sort: [{\n\t\t\tdirection: DESCENDING,\n\t\t\ton: UPDATED_AT,\n\t\t}]) {\n\t\t\tnodes {\n\t\t\t\tid\n\t\t\t\tchangedData\n\t\t\t\tkind\n\t\t\t\tlibraryEntry {\n\t\t\t\t\treconsumeCount\n\t\t\t\t\treconsuming\n\t\t\t\t\tprivate\n\t\t\t\t\tnotes\n\t\t\t\t}\n\t\t\t\tmedia {\n\t\t\t\t\t__typename\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\tposterImage {\n\t\t\t\t\t\tviews {\n\t\t\t\t\t\t\twidth\n\t\t\t\t\t\t\theight\n\t\t\t\t\t\t\turl\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\ttitles {\n\t\t\t\t\t\talternatives\n\t\t\t\t\t\tcanonical\n\t\t\t\t\t\tlocalized\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tupdatedAt\n\t\t\t}\n\t\t}\n\t}\n}","subject":"Sort libraryEvents so watch history is in correct order","message":"Sort libraryEvents so watch history is in correct order\n","lang":"GraphQL","license":"mit","repos":"timw4mail\/HummingBirdAnimeClient,timw4mail\/HummingBirdAnimeClient,timw4mail\/HummingBirdAnimeClient"} {"commit":"ee4a0ab291c7aaf3ea8899828abf457c0ab05925","old_file":"src\/graphql\/VariantFragment.graphql","new_file":"src\/graphql\/VariantFragment.graphql","old_contents":"fragment VariantFragment on ProductVariant {\n id\n title\n price\n priceV2 {\n amount\n currencyCode\n }\n presentmentPrices(first: 20) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n }\n edges {\n node {\n price {\n amount\n currencyCode\n }\n }\n }\n }\n weight\n available: availableForSale\n sku\n compareAtPrice\n compareAtPriceV2 {\n amount\n currencyCode\n }\n image {\n id\n src: originalSrc\n altText\n }\n selectedOptions {\n name\n value\n }\n}\n","new_contents":"fragment VariantFragment on ProductVariant {\n id\n title\n price\n priceV2 {\n amount\n currencyCode\n }\n presentmentPrices(first: 20) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n }\n edges {\n node {\n price {\n amount\n currencyCode\n }\n compareAtPrice {\n amount\n currencyCode\n }\n }\n }\n }\n weight\n available: availableForSale\n sku\n compareAtPrice\n compareAtPriceV2 {\n amount\n currencyCode\n }\n image {\n id\n src: originalSrc\n altText\n }\n selectedOptions {\n name\n value\n }\n}\n","subject":"Add compareAtPrice to variant presentment price","message":"Add compareAtPrice to variant presentment price","lang":"GraphQL","license":"mit","repos":"Shopify\/js-buy-sdk,Shopify\/js-buy-sdk"} {"commit":"56c7274ea1d9a1e21a59761cb713a314032701c0","old_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepositoriesById.graphql","new_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepositoriesById.graphql","old_contents":"query RepositoriesByIds($ids: [String!]!) {\n nodes(ids: $ids) {\n ... on Repository {\n name\n description\n license\n owner {\n avatarURL\n login\n }\n url\n }\n }\n}\n","new_contents":"query RepositoriesByIds($ids: [ID!]!) {\n nodes(ids: $ids) {\n ... on Repository {\n name\n description\n id\n licenseInfo {\n name\n nickname\n }\n owner {\n avatarUrl\n id\n login\n }\n url\n }\n }\n}\n","subject":"Update information used in repo lookup","message":"Update information used in repo lookup\n\nThis is information in line with the current schema and also what we want to look for\n","lang":"GraphQL","license":"apache-2.0","repos":"hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp"} {"commit":"f03f562314d051616bf4044f6d2d82c6ef190d8f","old_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubProjectOwnersById.graphql","new_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubProjectOwnersById.graphql","old_contents":"query ProjectOwnersByIds($ids: [ID!]!) {\n nodes(ids: $ids) {\n ... on User {\n id\n name\n login\n }\n ... on Organization {\n id\n name\n login\n }\n }\n}\n","new_contents":"query ProjectOwnersByIds($ids: [ID!]!) {\n nodes(ids: $ids) {\n ... on User {\n id\n name\n login\n url\n }\n ... on Organization {\n id\n name\n login\n url\n }\n }\n}\n","subject":"Add url to project owners query","message":"Add url to project owners query\n\nFor later use so we can link authors\n","lang":"GraphQL","license":"apache-2.0","repos":"hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp"} {"commit":"491bd153f1062d72712e894b3970cf9b729067dc","old_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepositoryByNameAndOwner.graphql","new_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepositoryByNameAndOwner.graphql","old_contents":"query RepositoryByNameAndOwner($owner: String!, $name: String!) {\n repository(owner: $owner, name: $name) {\n ... on Repository {\n id\n }\n }\n}\n","new_contents":"query RepositoryByNameAndOwner($owner: String!, $name: String!) {\n repository(owner: $owner, name: $name) {\n ... on Repository {\n id\n owner {\n id\n }\n }\n }\n}\n","subject":"Add owner ID to repository lookup","message":"Add owner ID to repository lookup\n\nSo we can look up the owner separately\n","lang":"GraphQL","license":"apache-2.0","repos":"hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp"} {"commit":"6583495d10bf15f68fd861f725bf8073e4b26a33","old_file":"tests\/testthat\/kitchen\/execution-introspection.graphql","new_file":"tests\/testthat\/kitchen\/execution-introspection.graphql","old_contents":"# https:\/\/gist.github.com\/craigbeck\/b90915d49fda19d5b2b17ead14dcd6da\nquery IntrospectionQuery {\n __schema {\n queryType { name }\n mutationType { name }\n # subscriptionType { name }\n types {\n ...FullType\n }\n directives {\n name\n description\n args {\n ...InputValue\n }\n locations\n }\n }\n}\n\nfragment FullType on __Type {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n}\n\nfragment InputValue on __InputValue {\n name\n description\n type { ...TypeRef }\n defaultValue\n}\n\nfragment TypeRef on __Type {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n }\n }\n }\n}\n","new_contents":"# https:\/\/github.com\/graphql\/graphql-js\/blob\/master\/src\/utilities\/introspectionQuery.js\nquery IntrospectionQuery {\n __schema {\n queryType { name }\n mutationType { name }\n # subscriptionType { name }\n types {\n ...FullType\n }\n directives {\n name\n description\n locations\n args {\n ...InputValue\n }\n }\n }\n}\nfragment FullType on __Type {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n}\nfragment InputValue on __InputValue {\n name\n description\n type { ...TypeRef }\n defaultValue\n}\nfragment TypeRef on __Type {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n}\n","subject":"Update introspection query from graphql-js","message":"Update introspection query from graphql-js\n","lang":"GraphQL","license":"mit","repos":"schloerke\/graphqlr,schloerke\/graphqlr,schloerke\/graphqlr"} {"commit":"041d7bbc984e5a509e37dd4586b727d500bb2e37","old_file":"GraphQLSharp.Test\/Language\/kitchen-sink.graphql","new_file":"GraphQLSharp.Test\/Language\/kitchen-sink.graphql","old_contents":"# Copyright (c) 2015, Facebook, Inc.\n# All rights reserved.\n#\n# This source code is licensed under the BSD-style license found in the\n# LICENSE file in the root directory of this source tree. An additional grant\n# of patent rights can be found in the PATENTS file in the same directory.\n\nquery queryName($foo: ComplexType, $site: Site = MOBILE) {\n whoever123is: node(id: [123, 456]) {\n id ,\n ... on User @defer {\n field2 {\n id ,\n alias: field1(first:10, after:$foo,) @if: $foo {\n id,\n ...frag\n }\n }\n }\n }\n}\n\nmutation likeStory {\n like(story: 123) @defer {\n story {\n id\n }\n }\n}\n\nfragment frag on Friend {\n foo(size: $size, bar: $b, obj: {key: \"value\"})\n}\n\n{\n unnamed(truthy: true, falsey: false),\n query\n}\n","new_contents":"# Copyright (c) 2015, Facebook, Inc.\n# All rights reserved.\n#\n# This source code is licensed under the BSD-style license found in the\n# LICENSE file in the root directory of this source tree. An additional grant\n# of patent rights can be found in the PATENTS file in the same directory.\n\nquery queryName($foo: ComplexType, $site: Site = MOBILE) {\n whoever123is: node(id: [123, 456]) {\n id ,\n ... on User @defer {\n field2 {\n id ,\n alias: field1(first:10, after:$foo,) @include(if: $foo) {\n id,\n ...frag\n }\n }\n }\n }\n}\n\nmutation likeStory {\n like(story: 123) @defer {\n story {\n id\n }\n }\n}\n\nfragment frag on Friend {\n foo(size: $size, bar: $b, obj: {key: \"value\"})\n}\n\n{\n unnamed(truthy: true, falsey: false),\n query\n}\n","subject":"Update graphql kitchen sink test file.","message":"Update graphql kitchen sink test file.\n","lang":"GraphQL","license":"bsd-3-clause","repos":"amarant\/GraphQLSharp"} {"commit":"e39e0619b385ca1d39d3c521a0307e0161a215a7","old_file":"src\/graphql\/VariantFragment.graphql","new_file":"src\/graphql\/VariantFragment.graphql","old_contents":"fragment VariantFragment on ProductVariant {\n id\n title\n price\n weight\n available\n image {\n id\n src\n altText\n }\n selectedOptions {\n name\n value\n }\n}\n","new_contents":"fragment VariantFragment on ProductVariant {\n id\n title\n price\n weight\n available\n compareAtPrice\n image {\n id\n src\n altText\n }\n selectedOptions {\n name\n value\n }\n}\n","subject":"Add compare at price to variant","message":"Add compare at price to variant\n","lang":"GraphQL","license":"mit","repos":"Shopify\/js-buy-sdk,Shopify\/js-buy-sdk"} {"commit":"d5632690aacca3267c82953421b2559717667a8f","old_file":"Artsy\/Networking\/create_order.graphql","new_file":"Artsy\/Networking\/create_order.graphql","old_contents":"mutation createOrder(\n $input: CreateOrderWithArtworkInput!\n) {\n createOrderWithArtwork(\n input: $input\n ) {\n orderOrError {\n ... on OrderWithMutationSuccess {\n order {\n id\n }\n }\n ... on OrderWithMutationFailure {\n error {\n description\n }\n }\n }\n }\n}\n","new_contents":"mutation createOrder(\n $input: CreateOrderWithArtworkInput!\n) {\n createOrderWithArtwork(\n input: $input\n ) {\n orderOrError {\n ... on OrderWithMutationSuccess {\n order {\n id\n }\n }\n ... on OrderWithMutationFailure {\n error {\n type\n code\n data\n }\n }\n }\n }\n}\n","subject":"Switch to latest error type","message":"Switch to latest error type\n","lang":"GraphQL","license":"mit","repos":"artsy\/eigen,artsy\/eigen,artsy\/eigen,artsy\/eigen,artsy\/eigen,artsy\/eigen,artsy\/eigen"} {"commit":"5294f61b56373950091348aef9944bfa405031a2","old_file":"graphql\/queries\/enterprise-audit-log.graphql","new_file":"graphql\/queries\/enterprise-audit-log.graphql","old_contents":"","new_contents":"# Make sure that you set the request to `POST` with URL `https:\/\/api.github.com\/graphql`\n# Set `Headers` where `Content-Type` is `application\/json` and `Accept` is `application\/vnd.github.audit-log-preview+json`\n\n{\n enterprise(slug: \"\") {\n organizations(first: 100){\n nodes {\n auditLog(last: 5) {\n edges {\n node {\n ... on AuditEntry {\n # Get Audit Log Entry by 'Action'\n action\n actorLogin\n createdAt\n # User 'Action' was performed on\n user{\n name\n email\n }\n }\n }\n }\n }\n }\n }\n }\n}\n\n# If you'd like to use environment variables, this is what it would look like:\n\nquery getAuditLog($slug: String!, $numEntries: Int!, $cursor: String){\n enterprise(slug: $slug) {\n organizations(first: 100){\n nodes {\n auditLog(last: $numEntries, before: $cursor) {\n edges {\n node {\n ... on AuditEntry { # Get Audit Log Entry by 'Action'\n action\n actorLogin\n createdAt\n user { # User 'Action' was performed on\n name\n email\n }\n }\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n totalCount\n }\n }\n }\n }\n}\n\n# Envrionment variables:\n{\n\t\"slug\": \"\",\n\t\"numEntries\": 5,\n\t\"cursor\": null\n}\n","subject":"Add audit log graphql at the enterprise level","message":"Add audit log graphql at the enterprise level","lang":"GraphQL","license":"cc0-1.0","repos":"github\/platform-samples,github\/platform-samples,github\/platform-samples,github\/platform-samples,github\/platform-samples,github\/platform-samples,github\/platform-samples,github\/platform-samples"} {"commit":"e81e2461c2d3b65afef6030b63c7fd55ddfa6915","old_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepoReleases.graphql","new_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubRepoReleases.graphql","old_contents":"","new_contents":"query RepoReleases {\n repository(owner: \"hzsweers\", name: \"CatchUp\") {\n ... on Repository {\n releases(first: 100) {\n nodes {\n ... on Release {\n name\n publishedAt\n description\n tag {\n name\n }\n url\n }\n }\n }\n }\n }\n}\n","subject":"Add repo releases graphql query","message":"Add repo releases graphql query\n\nFor later!\n","lang":"GraphQL","license":"apache-2.0","repos":"hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp"} {"commit":"000a564facbbabfa744cdc4d204c2c28c007e155","old_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubProjectOwnersById.graphql","new_file":"app\/src\/main\/graphql\/io\/sweers\/catchup\/data\/github\/GitHubProjectOwnersById.graphql","old_contents":"","new_contents":"query ProjectOwnersByIds($ids: [ID!]!) {\n nodes(ids: $ids) {\n ... on User {\n id\n name\n login\n }\n ... on Organization {\n id\n name\n login\n }\n }\n}\n","subject":"Add utility project owners query","message":"Add utility project owners query\n\nOn github repos - owners may be an org or a user. We need to be able to look up both and map correctly so we can resolve user \"names\" and not just their login name. This makes for a bit prettier reading in items\n","lang":"GraphQL","license":"apache-2.0","repos":"hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp,hzsweers\/CatchUp"}