1
0
mirror of synced 2025-12-21 10:57:10 -05:00
Files
docs/content/graphql/overview/changelog.md
2021-06-24 10:21:07 -04:00

1.1 KiB

title, intro, redirect_from, versions, topics
title intro redirect_from versions topics
Changelog The GraphQL schema changelog is a list of recent and upcoming changes to our GraphQL API schema. It includes backwards-compatible changes, schema previews, and upcoming breaking changes.
/v4/changelog
fpt ghes ghae
* * *
API

Breaking changes include changes that will break existing queries or could affect the runtime behavior of clients. For a list of breaking changes and when they will occur, see our breaking changes log.

{% for entry in graphql.changelog %}

Schema Changes for {{ entry.date }}

{% for schemaChange in entry.schemaChanges %} {{ schemaChange.title }}

{% for change in schemaChange.changes %}

  • {{ change }} {% endfor %} {% endfor %}

{% for previewChange in entry.previewChanges %} {{ previewChange.title }}

{% for change in previewChange.changes %}

  • {{ change }} {% endfor %} {% endfor %}

{% for upcomingChange in entry.upcomingChanges %} {{ upcomingChange.title }}

{% for change in upcomingChange.changes %}

  • {{ change }} {% endfor %} {% endfor %}

{% endfor %}