{"id":15685618,"url":"https://github.com/stefh/hotchocolate.data.extensions","last_synced_at":"2026-03-09T12:01:48.001Z","repository":{"id":46720458,"uuid":"400867520","full_name":"StefH/HotChocolate.Data.Extensions","owner":"StefH","description":"Contains some \"IgnoreCase\" String filters for eq, contains, endsWith and startsWith.","archived":false,"fork":false,"pushed_at":"2025-06-22T08:36:45.000Z","size":360,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-27T13:03:15.967Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StefH.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null},"funding":{"github":["StefH"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":"https://www.paypal.me/stefheyenrath"}},"created_at":"2021-08-28T18:50:36.000Z","updated_at":"2025-08-18T08:43:21.000Z","dependencies_parsed_at":"2025-11-17T01:02:14.101Z","dependency_job_id":null,"html_url":"https://github.com/StefH/HotChocolate.Data.Extensions","commit_stats":{"total_commits":32,"total_committers":2,"mean_commits":16.0,"dds":0.3125,"last_synced_commit":"fe820aa2a2d04753254559d4c5a25957aebfbea9"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/StefH/HotChocolate.Data.Extensions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefH%2FHotChocolate.Data.Extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefH%2FHotChocolate.Data.Extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefH%2FHotChocolate.Data.Extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefH%2FHotChocolate.Data.Extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StefH","download_url":"https://codeload.github.com/StefH/HotChocolate.Data.Extensions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefH%2FHotChocolate.Data.Extensions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30294685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T11:12:22.024Z","status":"ssl_error","status_checked_at":"2026-03-09T11:10:54.577Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-10-03T17:27:46.253Z","updated_at":"2026-03-09T12:01:47.989Z","avatar_url":"https://github.com/StefH.png","language":"C#","funding_links":["https://github.com/sponsors/StefH","https://www.paypal.me/stefheyenrath"],"categories":[],"sub_categories":[],"readme":"# ![icon](./resources/icon_32x32.png) HotChocolate.Data.Extensions\n\nContains some extra String filters like:\n- `eqIgnoreCase` / `neqIgnoreCase`\n- `containsIgnoreCase` / `ncontainsIgnoreCase`\n- `endsWithIgnoreCase` / `nendsWithIgnoreCase`\n- `startsWithIgnoreCase` / `nstartsWithIgnoreCase`\n\n## NuGet packages\n\n| Name | NuGet | Info |\n|:- |:- |:- |\n| `HotChocolate.Data.Extensions` | [![NuGet Badge](https://img.shields.io/nuget/v/HotChocolate.Data.Extensions)](https://www.nuget.org/packages/HotChocolate.Data.Extensions) | Combined NuGet\n| `HotChocolate.Data.Filters.Extensions` | [![NuGet Badge](https://img.shields.io/nuget/v/HotChocolate.Data.Filters.Extensions)](https://www.nuget.org/packages/HotChocolate.Data.Filters.Extensions) | Contains only extensions for Filters\n\n## Usage \"HotChocolate.Data.Filters.Extensions\"\n\n### Register in your Startup.cs\n\n``` c#\n    .AddGraphQLServer()\n\n    // ...\n           \n        // Add filtering and sorting capabilities.\n        .AddExtendedFiltering() // 👈 Instead of .AddFiltering()\n\n    // ...\n```\n\n### Use in GraphQL\n\nNow you can write GraphQL like this:\n\n``` gql\nquery GetCharactersWithPaging1(\n  $take: Int\n  $skip: Int\n  $order: [ICharacterSortInput!]\n) {\n  charactersWithPagingFilteringAndSorting(\n    take: $take\n    skip: $skip\n    where: { name: { containsIgnoreCase: \"c\" } } # 👈 instead of contains\n    order: $order\n  ) {\n    items {\n      ...c\n    }\n    totalCount\n    pageInfo {\n      hasNextPage\n      hasPreviousPage\n    }\n  }\n}\n\nquery GetCharactersWithPaging2(\n  $take: Int\n  $skip: Int\n  $order: [ICharacterSortInput!]\n) {\n  charactersWithPagingFilteringAndSorting(\n    take: $take\n    skip: $skip\n    where: { name: { eqIgnoreCase: \"c-3PO\" } } # 👈 instead of eq\n    order: $order\n  ) {\n    items {\n      ...c\n    }\n    totalCount\n    pageInfo {\n      hasNextPage\n      hasPreviousPage\n    }\n  }\n}\n\nfragment c on Character {\n  id\n  name\n  height\n  appearsIn\n}\n```\n\n\n## Sponsors\n\n[Entity Framework Extensions](https://entityframework-extensions.net/?utm_source=StefH) and [Dapper Plus](https://dapper-plus.net/?utm_source=StefH) are major sponsors and proud to contribute to the development of **HotChocolate.Data.Extensions** and **HotChocolate.Data.Filters.Extensions**.\n\n[![Entity Framework Extensions](https://raw.githubusercontent.com/StefH/resources/main/sponsor/entity-framework-extensions-sponsor.png)](https://entityframework-extensions.net/bulk-insert?utm_source=StefH)\n\n[![Dapper Plus](https://raw.githubusercontent.com/StefH/resources/main/sponsor/dapper-plus-sponsor.png)](https://dapper-plus.net/bulk-insert?utm_source=StefH)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefh%2Fhotchocolate.data.extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstefh%2Fhotchocolate.data.extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefh%2Fhotchocolate.data.extensions/lists"}