Code Monkey home page Code Monkey logo

Comments (7)

sahb1239 avatar sahb1239 commented on July 1, 2024

Hi,

I unfortunately cannot replicate the issue. Can you send me a proof of concept code?

This is the full sample code from the first example for the readme.

        static async Task Main(string[] args)
        {
            IGraphQLHttpClient client = GraphQLHttpClient.Default();

            // Get response from url
            var response = await client.Query<Query>("https://mpjk0plp9.lp.gql.zone/graphql");

            // Get name etc.
            Console.WriteLine(response.Hero.Name);
            Console.ReadKey();
        }

        // The query class used is
        public class Query
        {
            public CharacterOrPerson Hero { get; set; }
        }

        public class CharacterOrPerson
        {
            public string Name { get; set; }
            public IEnumerable<Friend> Friends { get; set; }
        }

        public class Friend
        {
            public string Name { get; set; }
        }

Output:
R2-D2

The csproj is:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>netcoreapp2.0</TargetFramework>
    <LangVersion>7.1</LangVersion>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="SAHB.GraphQLClient" Version="1.0.1" />
  </ItemGroup>

</Project>

from sahb.graphqlclient.

mrtes avatar mrtes commented on July 1, 2024

Aha, using your settings (i.e. .net core 2), I don't have the issue either.
Unfortunately, I'm bound to use .Net Framework 4.6.1 for my other project right now and with this framework version, the issue persists.

Do you plan to add support for .Net Framework? Or which versions are supported currently?

Best regards
Martin

from sahb.graphqlclient.

sahb1239 avatar sahb1239 commented on July 1, 2024

Hello Martin

The library is intended to support .NET Framework 4.5.2. I will try to adjust the unit tests so they also run for .NET Framework 4.5.2.

I will try to make a update which should fix it. Stay tuned!

from sahb.graphqlclient.

sahb1239 avatar sahb1239 commented on July 1, 2024

Please try 1.0.2-beta0001 on Nuget and tell me if it works.

from sahb.graphqlclient.

mrtes avatar mrtes commented on July 1, 2024

I can confirm, that the new build works with .Net 4.6.1 and 4.7 as well 👍

from sahb.graphqlclient.

sahb1239 avatar sahb1239 commented on July 1, 2024

I will then publish 1.0.2 final later today. Thanks for your bug report :)

from sahb.graphqlclient.

sahb1239 avatar sahb1239 commented on July 1, 2024

1.0.2 published on NuGet

from sahb.graphqlclient.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.