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
Relay currently passes through directives to the server, but does not directly implement support for @include or @skip. The outward effects of this are that skipped fields (either include: false or skip: true) are not sent to the server, and that data for skipped fields is not returned to components in props.
The simplest implementation of the above is to make RelayQueryNode.getChildren() not return child fields that are skipped.
Contributions welcome, otherwise we'll get to this as time permits.
The text was updated successfully, but these errors were encountered:
Relay currently passes through directives to the server, but does not directly implement support for
@include
or@skip
. The outward effects of this are that skipped fields (eitherinclude: false
orskip: true
) are not sent to the server, and that data for skipped fields is not returned to components inprops
.The simplest implementation of the above is to make
RelayQueryNode.getChildren()
not return child fields that are skipped.Contributions welcome, otherwise we'll get to this as time permits.
The text was updated successfully, but these errors were encountered: