├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── Package@swift-4.swift ├── README.md ├── Sources └── FluentProvider │ ├── Cache.swift │ ├── Droplet │ ├── Config+Driver.swift │ ├── Config+Preparation.swift │ ├── Droplet+Prepare.swift │ └── Droplet+Storage.swift │ ├── Exports.swift │ ├── Filterable │ ├── Filterable.swift │ ├── FilterableKey+String.swift │ ├── FilterableKey.swift │ └── Query+Filterable.swift │ ├── Model.swift │ ├── Node+Row+JSON.swift │ ├── Pagination.swift │ ├── Prepare.swift │ ├── Provider.swift │ ├── SQLite+Config.swift │ └── Updateable │ ├── Request+Updateable.swift │ ├── Updateable.swift │ └── UpdateableKey.swift └── Tests ├── FluentProviderTests ├── CacheTests.swift └── PagingTests.swift └── LinuxMain.swift /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Package@swift-4.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FluentProvider/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Cache.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Droplet/Config+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Droplet/Config+Driver.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Droplet/Config+Preparation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Droplet/Config+Preparation.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Droplet/Droplet+Prepare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Droplet/Droplet+Prepare.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Droplet/Droplet+Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Droplet/Droplet+Storage.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Exports.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Filterable/Filterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Filterable/Filterable.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Filterable/FilterableKey+String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Filterable/FilterableKey+String.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Filterable/FilterableKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Filterable/FilterableKey.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Filterable/Query+Filterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Filterable/Query+Filterable.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Model.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Node+Row+JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Node+Row+JSON.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Pagination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Pagination.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Prepare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Prepare.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Provider.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/SQLite+Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/SQLite+Config.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Updateable/Request+Updateable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Updateable/Request+Updateable.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Updateable/Updateable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Updateable/Updateable.swift -------------------------------------------------------------------------------- /Sources/FluentProvider/Updateable/UpdateableKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Sources/FluentProvider/Updateable/UpdateableKey.swift -------------------------------------------------------------------------------- /Tests/FluentProviderTests/CacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Tests/FluentProviderTests/CacheTests.swift -------------------------------------------------------------------------------- /Tests/FluentProviderTests/PagingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Tests/FluentProviderTests/PagingTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/fluent-provider/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------