{"id":13872242,"url":"https://github.com/vapor/fluent-kit","last_synced_at":"2026-01-17T01:11:27.531Z","repository":{"id":35336108,"uuid":"170219584","full_name":"vapor/fluent-kit","owner":"vapor","description":"Swift ORM (queries, models, and relations) for NoSQL and SQL databases","archived":false,"fork":false,"pushed_at":"2026-01-12T16:23:36.000Z","size":1587,"stargazers_count":256,"open_issues_count":73,"forks_count":120,"subscribers_count":20,"default_branch":"main","last_synced_at":"2026-01-12T19:18:02.508Z","etag":null,"topics":["fluent","server-side-swift","swift","vapor"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/vapor.png","metadata":{"funding":{"github":["vapor"],"open_collective":"vapor"},"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-02-11T23:32:26.000Z","updated_at":"2026-01-12T14:16:24.000Z","dependencies_parsed_at":"2024-01-16T09:55:49.733Z","dependency_job_id":"befbd235-359f-4fd1-8c66-5c7631789d87","html_url":"https://github.com/vapor/fluent-kit","commit_stats":{"total_commits":287,"total_committers":50,"mean_commits":5.74,"dds":0.7526132404181185,"last_synced_commit":"614d3ec27cdef50cfb9fc3cfd382b6a4d9578cff"},"previous_names":[],"tags_count":199,"template":false,"template_full_name":null,"purl":"pkg:github/vapor/fluent-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vapor%2Ffluent-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vapor%2Ffluent-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vapor%2Ffluent-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vapor%2Ffluent-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vapor","download_url":"https://codeload.github.com/vapor/fluent-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vapor%2Ffluent-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28491084,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T00:50:05.742Z","status":"ssl_error","status_checked_at":"2026-01-17T00:43:11.982Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["fluent","server-side-swift","swift","vapor"],"created_at":"2024-08-05T23:00:37.771Z","updated_at":"2026-01-17T01:11:27.480Z","avatar_url":"https://github.com/vapor.png","language":"Swift","funding_links":["https://github.com/sponsors/vapor","https://opencollective.com/vapor"],"categories":["Swift"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://design.vapor.codes/images/vapor-fluentkit.svg\" height=\"96\" alt=\"FluentKit\"\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003ca href=\"https://docs.vapor.codes/4.0/\"\u003e\u003cimg src=\"https://design.vapor.codes/images/readthedocs.svg\" alt=\"Documentation\"\u003e\u003c/a\u003e\n\u003ca href=\"https://discord.gg/vapor\"\u003e\u003cimg src=\"https://design.vapor.codes/images/discordchat.svg\" alt=\"Team Chat\"\u003e\u003c/a\u003e\n\u003ca href=\"LICENSE\"\u003e\u003cimg src=\"https://design.vapor.codes/images/mitlicense.svg\" alt=\"MIT License\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/vapor/fluent-kit/actions/workflows/test.yml\"\u003e\u003cimg src=\"https://img.shields.io/github/actions/workflow/status/vapor/fluent-kit/test.yml?event=push\u0026style=plastic\u0026logo=github\u0026label=tests\u0026logoColor=%23ccc\" alt=\"Continuous Integration\"\u003e\u003c/a\u003e\n\u003ca href=\"https://codecov.io/github/vapor/fluent-kit\"\u003e\u003cimg src=\"https://img.shields.io/codecov/c/github/vapor/fluent-kit?style=plastic\u0026logo=codecov\u0026label=codecov\" alt=\"Code Coverage\"\u003e\u003c/a\u003e\n\u003ca href=\"https://swift.org\"\u003e\u003cimg src=\"https://design.vapor.codes/images/swift60up.svg\" alt=\"Swift 6.0+\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cbr\u003e\n\nAn Object-Relational Mapper (ORM) for Swift. It allows you to write type safe, database agnostic models and queries. It takes advantage of Swift's type system to provide a powerful, yet easy to use API.\n\nAn example query looks like:\n\n```swift\nlet planets = try await Planet.query(on: database)\n    .filter(\\.$type == .gasGiant)\n    .sort(\\.$name)\n    .with(\\.$star)\n    .all()\n```\n\nFor more information, see the [Fluent documentation](https://docs.vapor.codes/fluent/overview/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvapor%2Ffluent-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvapor%2Ffluent-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvapor%2Ffluent-kit/lists"}