I am trying to send requests to an API that uses GraphQL for its data filtering. The problem I am having that I need to build each request manually through a string interpolation which is easier said than done. Is there a library I can use that would convert a populated object to a graphQL request without the use of the graphql client or its GraphQLHttpRequest?
Currently using the standard HttpClientFactory for the http client requests. The reason I can't use the graphsql client package as we have our own that does a lot of boiler plate setup to work with our systems.