GraphQL
1 program
Added 2025-11-07T11:13:45Z
Model: google/gemini-2.5-proTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5cfc58ecc1 · authored 2025-11-07T12:13:45+01:00 · model google/gemini-2.5-pro
Sources mentioning this language
6 sources · pl_id:
pl/graphqlWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | The GraphQL Foundation |
|---|---|
| First appeared | 2015 |
| Homepage | https://graphql.org |
Extensions claimed by this language
4 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.graphql | linguist | primary | 884.1K files |
.graphql | pygments | primary | 884.1K files |
.gql | linguist | secondary | 197.6K files |
.graphqls | linguist | secondary | 71.5K files |
Related languages
LLM-contributed programs
GraphQL Schema for a Movie Database
Provenance: commit 5cfc58ecc1 · authored 2025-11-07T12:13:45+01:00 · model google/gemini-2.5-pro · Temp 0.4
scalar ObjectId
type Movie {
_id: ObjectId!
plot: String
title: String!
}
type MoviesPage {
movies: [Movie!]!
total: Int!
}
input MovieFilters {
title: String
}
type Query {
movie(query: MovieFilters): Movie
movies(limit: Int = 10, offset: Int = 0): MoviesPage
}
input MovieUpdateInput {
plot: String
title: String
}
type Mutation {
updateMovie(query: MovieFilters!, set: MovieUpdateInput!): Movie
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)