-
I need a mechanism for marking fields so that they are not sent to the server. For example |
Beta Was this translation helpful? Give feedback.
Answered by
frank06
Dec 14, 2022
Replies: 1 comment 3 replies
-
If those were relationships you could use the annotation |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Enhed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If those were relationships you could use the annotation
@DataRelationship(serialize: false)
but unfortunately there is no such thing for attributes yet. You can overrideserialize
and remove those fields from the JSON map.