Skip to content

Commit c62459a

Browse files
Added NuGet reference to the README.md
1 parent 10c7177 commit c62459a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ A .NET client for accessing the [4me GraphQL API](https://developer.4me.com/grap
44
## Licensing
55
The SDK uses the [Newtonsoft.Json framework](https://github.com/JamesNK/Newtonsoft.Json) NuGet Package, which is a high-performance JSON framework for .NET and available under [MIT licensing](https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md).
66

7+
## NuGet
8+
Stable binaries are published to [NuGet.org](https://www.nuget.org), and contain everything you need to use [.NET SDK for 4me GraphQL](https://www.nuget.org/packages/Sdk4me.GraphQL) in your application.
9+
710
# Introduction
811
The .NET SDK simplifies the process of interacting with the 4me GraphQL API, allowing you to take full advantage of its query and mutation capabilities with ease.
912
It abstracts away the complex task of managing low-level details such as sending requests, parsing responses, filtering and pagination, making it simple to integrate 4me GraphQL API into your .NET applications and fully leverage its functionalities.
@@ -101,7 +104,7 @@ By default, a set of fields will be returned for all selected GraphQL `OBJECT` t
101104
DataList<Person> people = await client.Get(Query.Person
102105
.Select(PersonField.ID, PersonField.Name)
103106
.SelectOrganization(new OrganizationQuery()
104-
.Select(OrganizationField.ID, OrganizationField.Name, OrganizationField.Disabled)));
107+
.Select(OrganizationField.ID, OrganizationField.Name, OrganizationField.Disabled)));
105108
```
106109

107110
To further refine the selection of fields by using a query for a specific GraphQL `OBJECT` type field, in this case, `Organization`.
@@ -120,7 +123,7 @@ It's recommended to only select the necessary fields.
120123
```csharp
121124
DataList<Person> people = await client.Get(Query.Person.View(PeronsView.All));
122125
```
123-
A views can only be used on the top level query.
126+
A view can only be used on the top level query.
124127

125128
#### Nested queries and items per request
126129
```csharp

0 commit comments

Comments
 (0)