Retrieves a list of all article authors

Hello, I am looking for a replacement for the below REST API that retrieves all article authors.

Since the above is a REST API, it is already deprecated, but I can’t find a direct replacement for this in the GraphQL API explorer. The AI assistant suggests using the get articles GraphQL API (which is paginated) and then extracting the authors out of it - articles - GraphQL Admin

Any ideas on this one?

It looks like there is no direct way to get all authors in GraphQL.

Instead, you can perform bulk operation query:

mutation {
  bulkOperationRunQuery(
   query: """
    {
      articles {
        edges {
          node {
            author {
              name
            }
          }
        }
      }
    }
    """
  ) {
    bulkOperation {
      id
      status
    }
    userErrors {
      field
      message
    }
  }
}
1 Like

Also, you can post this issue here.

1 Like