zngly / wp-graphql-acf-mutations

WP GraphQl ACF Mutations Plugin
Other
7 stars 1 forks source link

write into acf fields in taxonomy or user #18

Open THRY opened 8 months ago

THRY commented 8 months ago

Hi

i am trying to mutate a text acf field inside a taxonomy (field calles jobNumber) and also inside a user. For both of these post types, it does not work.

In the case of taxonomy though, when i write into the standard description field, that works perfect. Can you take a look into that?

mutation MyMutation {
  createJob(input: {name: "test", jobNumber: "abc", description: "xyz"}) {
    clientMutationId
  }
}