You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we’re using the ?include=field_name query string parameter format which is optional (currently available in Drupal’s JSON API module’s implementation), but not necessarily supported by all json:api implementations. Requests to /type/id/field_name and /type/id/relationships/field_name should be made in parallel to the main request.
/type/id/field_name fetches the related object(s)
/type/id/relationships/field_name fetches the relationship itself (which might include metadata)
This method should probably be the default, with the query string parameter method being an opt-in configuration parameter.
The text was updated successfully, but these errors were encountered:
Currently, we’re using the
?include=field_name
query string parameter format which is optional (currently available in Drupal’s JSON API module’s implementation), but not necessarily supported by all json:api implementations. Requests to/type/id/field_name
and/type/id/relationships/field_name
should be made in parallel to the main request./type/id/field_name
fetches the related object(s)/type/id/relationships/field_name
fetches the relationship itself (which might include metadata)This method should probably be the default, with the query string parameter method being an opt-in configuration parameter.
The text was updated successfully, but these errors were encountered: