"Full data" GraphQL mode for Link fields #16237
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Adds a “GraphQL Mode” setting to Link fields, with the options “Full data” and “URL only”.
“Full data” will be selected by default for new Link fields; “URL only” will be selected by default for existing Link fields (for backwards compatibility on existing GraphQL APIs).
When “Full data” is selected, Link fields will be represented in GraphQL as objects with the following sub-fields:
type
value
label
urlSuffix
url
elementType
elementId
elementSiteId
elementTitle
For mutating Link field values, an object will need to be passed with the following sub-fields:
type
(set to a valid link type ID, e.g.url
orentry
)value
(set to the URL or element reference tag)label
(optional)urlSuffix
(optional)Related issues