😍Sử dụng Advanced Custom Fields trong Graphql

query GET_POSTS_AND_CATEGORIES {
  posts {
    nodes {
      id
      title
      acf {
        acf
        fieldGroupName
      }
    }
  }
  categories {
    nodes {
      id
      name
    }
  }
}

Last updated

Was this helpful?