Closed
Description
I was hoping If I can link read_only_fiedls
and write_only_fields
from DRF with graphene so that mutation arguments and payload have different fields each other.
For example, name
is a write-only field and created_at
is a read-only field.
mutation {
createPost (input: {name: "new-name"}) {
post {
created_at
}