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
Tested that none of @SerialName and @JsonProperty works with KGQL, and it seems that the document didn't mention it.
It would be nice if we have more details on how KGQL serialize and deserialize the objects
Example
@Serializable
data classUserDto(
@SerialName("_id")
@JsonProperty("_id")
valid:String,
)
And it still uses id but not _id.
The text was updated successfully, but these errors were encountered:
From first look it doesn't seem possible. You can try to ignore id and add a new _id property but I'm not sure how this behaves end-to-end, especially for mutations:
Tested that none of
@SerialName
and@JsonProperty
works with KGQL, and it seems that the document didn't mention it.It would be nice if we have more details on how KGQL serialize and deserialize the objects
Example
And it still uses
id
but not_id
.The text was updated successfully, but these errors were encountered: