Questions tagged [graphql-csharp]
3 questions
1
vote
0 answers
GraphQLHttpClient and CreateSubscriptionStream issue
I'm developing an application in asp.net core where I have to bind the GraphQLHttpClient CreateSubscriptionStream data into MVC view (.cshtml) via (xxxxcontroller.cs).
I don't see any code blocks for necessary changes to be done for Startup.cs and…

Kishore
- 11
- 1
0
votes
1 answer
How do I set Variables with Query for GraphQL in .NET
I can't seem to get this to work
I have the following code.
var query = new GraphQLRequest
{
Query = @"
{
query ($pageSize : Int)
{
studentQuery(skip:20, pageSize: $pageSize ){
…

user1086377
- 328
- 5
- 16
0
votes
0 answers
GraphQl where does not filter in Staging
I have a GraphQl query that works in development but doesn't work in Staging.
query all_Products($region: Alpha2Code!) {
variantsByregion(region: $region
where:{isB2B:{eq:true}}
) {
items {
productCode,
…

Ocelot
- 203
- 3
- 11