Tag: object
-
How to get the `< ... >` syntax on an object method?
7 In Raku: when I create an object with a CALL-ME method, I would like to use the < … > syntax for the signature instead of ( ‘…’ ) when … is a Str. In the documentation, there is an example of creating an operator, which is an ordinary Raku sub with a special…
-
How to extract subtree of the javascript object
0 I have large JSON object returned by my nodejs API server. I want to give users ability to query subset of fields similar to GraphQL but without schema. Object that is returned by API have set of standard fields but also set of any custom fields that users can add to its "custom" property.…
-
C# accessing properties belonging to instance which is of object? (i.e. Nullable) type
0 Here is info about our technical development environment : • .NET 6 • C# 10 • GraphQL 7.1.1 • GraphQL.Client 5.1.0 • GraphQL.Client.Serializer.Newtonsoft 5.1.0 GraphQLRequest request = new GraphQLRequest { Query = @" mutation FaxReceiverInfo( $_DateCreated: datetime, $_FaxNumber: String, $_FaxRecord: uniqueidentifier, $_Reason: String ) { insert_vw_EmailDeliveryRecordDetail_one ( object: { DateCreated: $_DateCreated, FaxNumber: $_FaxNumber, FaxRecord:…