{"id":14975953,"url":"https://github.com/adamfisher/waveapps.graphqlbuilder","last_synced_at":"2026-03-02T21:39:38.244Z","repository":{"id":170132121,"uuid":"646221684","full_name":"adamfisher/WaveApps.GraphQLBuilder","owner":"adamfisher","description":"A C# GraphQL query builder for waveapps.com.","archived":false,"fork":false,"pushed_at":"2023-05-27T19:51:14.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T23:43:15.347Z","etag":null,"topics":["csharp","dotnet","graphql","graphql-builder","graphql-client","graphql-query-builder","netstandard","wave-accounting","waveapps"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adamfisher.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-27T17:16:49.000Z","updated_at":"2024-04-18T23:44:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"85e1a6a2-6280-46a8-92e9-f497e7a9a0df","html_url":"https://github.com/adamfisher/WaveApps.GraphQLBuilder","commit_stats":{"total_commits":9,"total_committers":2,"mean_commits":4.5,"dds":"0.33333333333333337","last_synced_commit":"9b678df43be2e712bf031e4d48ade18229d0171d"},"previous_names":["adamfisher/waveapps.graphqlbuilder"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfisher%2FWaveApps.GraphQLBuilder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfisher%2FWaveApps.GraphQLBuilder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfisher%2FWaveApps.GraphQLBuilder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfisher%2FWaveApps.GraphQLBuilder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adamfisher","download_url":"https://codeload.github.com/adamfisher/WaveApps.GraphQLBuilder/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241180858,"owners_count":19923306,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","graphql","graphql-builder","graphql-client","graphql-query-builder","netstandard","wave-accounting","waveapps"],"created_at":"2024-09-24T13:52:56.029Z","updated_at":"2026-03-02T21:39:38.190Z","avatar_url":"https://github.com/adamfisher.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [![](https://github.com/adamfisher/WaveApps.GraphQLBuilder/blob/main/WaveApps.GraphQLBuilder/wave_logo.png?raw=true)](https://www.waveapps.com/) WaveApps.GraphQLBuilder\n\n[![Nuget](https://img.shields.io/nuget/dt/WaveApps.GraphQLBuilder?color=blue\u0026label=nuget\u0026style=plastic)](https://www.nuget.org/packages/WaveApps.GraphQLBuilder)\n[![GitHub](https://img.shields.io/github/license/adamfisher/WaveApps.GraphQLBuilder?style=plastic)](https://github.com/adamfisher/WaveApps.GraphQLBuilder/blob/main/LICENSE)\n\nA C# GraphQL query builder for [waveapps.com](https://www.waveapps.com/). Use this library to build strongly-typed queries in C# that can then be used with a GraphQL client to send commands to the Wave API. This client was code generated against the schema definition and maps 100% of the API operations and models.\n\n## Resources\n- [Wave Developer Portal](https://developer.waveapps.com/hc/en-us/categories/360001114072-Documentation)\n- [Wave API Playground (GraphQL Explorer)](https://developer.waveapps.com/hc/en-us/articles/360018937431-API-Playground)\n- [Wave GraphQL API Reference](https://developer.waveapps.com/hc/en-us/articles/360019968212-API-Reference)\n\n## Examples\n\nFor more query examples, see the [query examples](https://developer.waveapps.com/hc/en-us/sections/360006441372-Examples) in the Wave developer portal.\n\n### List Businesses\n\nA query constructed like this:\n\n```c#\nvar query = new WaveQueryBuilder()\n  .WithBusinesses(\n      new BusinessConnectionQueryBuilder()\n          .WithEdges(new BusinessEdgeQueryBuilder()\n              .WithNode(new BusinessQueryBuilder()\n                  .WithId()\n                  .WithName())))\n  .Build();\n```\n\nWill yield the following string from the `.Build()` method:\n\n```graphql\nquery {\n  businesses {\n    edges {\n      node {\n        id\n        name\n      }\n    }\n  }\n}\n```\n\n### Get User\n\nGet the currently logged in user:\n\n```c#\nvar query = new WaveQueryBuilder()\n  .WithUser(new UserQueryBuilder()\n      .WithId()\n      .WithFirstName()\n      .WithLastName()\n      .WithDefaultEmail()\n      .WithCreatedAt()\n      .WithCreatedAt()\n      .WithModifiedAt()\n  ).Build();\n```\n\nWill yield the following string from the `.Build()` method:\n\n```graphql\nquery {\n  user {\n    id\n    firstName\n    lastName\n    defaultEmail\n    createdAt\n    modifiedAt\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadamfisher%2Fwaveapps.graphqlbuilder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadamfisher%2Fwaveapps.graphqlbuilder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadamfisher%2Fwaveapps.graphqlbuilder/lists"}