No compatible constructor found for input type type `System.Ulid` HotChocolate

        services.AddGraphQLServer()
            .AddProjections()
            .AddAuthorization()
            .AddFiltering()
            .AddSorting()
            .AddQueryType<UsersQueries>()
            .AddMutationType<AccountMutations>()
            .AddTypeConverter<Ulid, string>(
                x => x.ToString())

this is my Extensions. What did I miss? I don't understand how can I make converter. I have tried to make converter from this Documentation but it is doesn't work

Can anybody help me?



Comments

Popular posts from this blog

Spring Elasticsearch Operations

Object oriented programming concepts (OOPs)

Spring Boot and Vaadin : Filtering rows in Vaadin Grid