├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── dependabot.yml └── workflows │ ├── api-docs.yml │ └── test.yml ├── .gitignore ├── .spi.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Fluent │ ├── Concurrency │ ├── FluentProvider+Concurrency.swift │ ├── ModelCredentialsAuthenticatable+Concurrency.swift │ ├── Pagination+Concurrency.swift │ └── Sessions+Concurrency.swift │ ├── Docs.docc │ ├── images │ │ └── vapor-fluent-logo.svg │ ├── index.md │ └── theme-settings.json │ ├── Exports.swift │ ├── Fluent+Cache.swift │ ├── Fluent+History.swift │ ├── Fluent+Paginate.swift │ ├── Fluent+Pagination.swift │ ├── Fluent+Sessions.swift │ ├── FluentProvider.swift │ ├── MigrateCommand.swift │ ├── ModelAuthenticatable.swift │ ├── ModelCredentialsAuthenticatable.swift │ ├── ModelTokenAuthenticatable.swift │ └── PageLimit.swift └── Tests └── FluentTests ├── CacheTests.swift ├── CredentialTests.swift ├── OperatorTests.swift ├── PaginationTests.swift ├── QueryHistoryTests.swift ├── RepositoryTests.swift └── SessionTests.swift /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/api-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/.github/workflows/api-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/.spi.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Fluent/Concurrency/FluentProvider+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Concurrency/FluentProvider+Concurrency.swift -------------------------------------------------------------------------------- /Sources/Fluent/Concurrency/ModelCredentialsAuthenticatable+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Concurrency/ModelCredentialsAuthenticatable+Concurrency.swift -------------------------------------------------------------------------------- /Sources/Fluent/Concurrency/Pagination+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Concurrency/Pagination+Concurrency.swift -------------------------------------------------------------------------------- /Sources/Fluent/Concurrency/Sessions+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Concurrency/Sessions+Concurrency.swift -------------------------------------------------------------------------------- /Sources/Fluent/Docs.docc/images/vapor-fluent-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Docs.docc/images/vapor-fluent-logo.svg -------------------------------------------------------------------------------- /Sources/Fluent/Docs.docc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Docs.docc/index.md -------------------------------------------------------------------------------- /Sources/Fluent/Docs.docc/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Docs.docc/theme-settings.json -------------------------------------------------------------------------------- /Sources/Fluent/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Exports.swift -------------------------------------------------------------------------------- /Sources/Fluent/Fluent+Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Fluent+Cache.swift -------------------------------------------------------------------------------- /Sources/Fluent/Fluent+History.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Fluent+History.swift -------------------------------------------------------------------------------- /Sources/Fluent/Fluent+Paginate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Fluent+Paginate.swift -------------------------------------------------------------------------------- /Sources/Fluent/Fluent+Pagination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Fluent+Pagination.swift -------------------------------------------------------------------------------- /Sources/Fluent/Fluent+Sessions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/Fluent+Sessions.swift -------------------------------------------------------------------------------- /Sources/Fluent/FluentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/FluentProvider.swift -------------------------------------------------------------------------------- /Sources/Fluent/MigrateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/MigrateCommand.swift -------------------------------------------------------------------------------- /Sources/Fluent/ModelAuthenticatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/ModelAuthenticatable.swift -------------------------------------------------------------------------------- /Sources/Fluent/ModelCredentialsAuthenticatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/ModelCredentialsAuthenticatable.swift -------------------------------------------------------------------------------- /Sources/Fluent/ModelTokenAuthenticatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/ModelTokenAuthenticatable.swift -------------------------------------------------------------------------------- /Sources/Fluent/PageLimit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Sources/Fluent/PageLimit.swift -------------------------------------------------------------------------------- /Tests/FluentTests/CacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Tests/FluentTests/CacheTests.swift -------------------------------------------------------------------------------- /Tests/FluentTests/CredentialTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Tests/FluentTests/CredentialTests.swift -------------------------------------------------------------------------------- /Tests/FluentTests/OperatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Tests/FluentTests/OperatorTests.swift -------------------------------------------------------------------------------- /Tests/FluentTests/PaginationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Tests/FluentTests/PaginationTests.swift -------------------------------------------------------------------------------- /Tests/FluentTests/QueryHistoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Tests/FluentTests/QueryHistoryTests.swift -------------------------------------------------------------------------------- /Tests/FluentTests/RepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Tests/FluentTests/RepositoryTests.swift -------------------------------------------------------------------------------- /Tests/FluentTests/SessionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor/fluent/HEAD/Tests/FluentTests/SessionTests.swift --------------------------------------------------------------------------------