├── .gitignore ├── Dockerfile ├── README.md ├── app-services └── production-app │ ├── auth │ ├── custom_user_data.json │ └── providers.json │ ├── data_sources │ └── mongodb-atlas │ │ ├── config.json │ │ └── northwind │ │ ├── categories │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── customers │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── employeeTerritories │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── employees │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── orders │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── products │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── region │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── shippers │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── suppliers │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ ├── territories │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ │ └── usStates │ │ ├── relationships.json │ │ ├── rules.json │ │ └── schema.json │ ├── environments │ ├── development.json │ ├── no-environment.json │ ├── production.json │ ├── qa.json │ └── testing.json │ ├── functions │ ├── config.json │ ├── funcDescribeSalesOrderViaChatGPT35Turbo.js │ ├── funcEmbedNorthwindOrders.js │ ├── funcSearchOrders.js │ ├── funcVectorSearchOrders.js │ ├── funcVectorizeStrings.js │ ├── funcVectorizeWithOpenAI.js │ └── resetFunc.js │ ├── graphql │ ├── config.json │ └── custom_resolvers │ │ ├── query_searchOrders.json │ │ └── query_vectorSearchOrders.json │ ├── hosting │ └── metadata.json │ ├── http_endpoints │ └── config.json │ ├── realm_config.json │ ├── sync │ └── config.json │ ├── triggers │ ├── trgEmbedNorthwindOrders.json │ └── trgVectorizeStrings.json │ └── values │ └── openAI_value.json ├── app-swift ├── App.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── App.xcscheme ├── App │ ├── AppConfig.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Realm.plist │ ├── Views │ │ ├── ContentView.swift │ │ ├── CreateItemView.swift │ │ ├── ErrorView.swift │ │ ├── ItemDetail.swift │ │ ├── ItemList.swift │ │ ├── ItemRow.swift │ │ ├── ItemsView.swift │ │ ├── LoginView.swift │ │ ├── LogoutButton.swift │ │ ├── OpenRealmView.swift │ │ ├── OrderDetailsDetails.swift │ │ ├── OrderDetailsDetailsView.swift │ │ ├── OrderDetailsList.swift │ │ └── OrderDetailsRow.swift │ ├── order.swift │ ├── order_customer.swift │ ├── order_employee.swift │ ├── order_orderDetails.swift │ ├── order_orderDetails_product.swift │ └── realmApp.swift └── README.md ├── atlas ├── clean-colls.js └── search-indexes.json ├── img ├── app-svc-key.gif ├── categories-index.gif ├── create-keypair.gif ├── demo-components.jpg ├── orders-index.gif ├── orders_mappings.jpg ├── postman-variables.jpg ├── save-vars.gif └── swift-app-config.jpg ├── postgres ├── backup.sh └── northwind.sql ├── postman └── liberate-data - GraphQL.postman_collection.json └── relational-migrator └── liberate-data.relmig /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/README.md -------------------------------------------------------------------------------- /app-services/production-app/auth/custom_user_data.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /app-services/production-app/auth/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/auth/providers.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/config.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/categories/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/categories/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/categories/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/categories/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/categories/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/customers/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/customers/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/customers/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/customers/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/customers/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/employeeTerritories/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/employeeTerritories/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/employeeTerritories/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/employeeTerritories/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/employeeTerritories/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/employees/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/employees/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/employees/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/employees/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/employees/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/orders/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/orders/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/orders/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/orders/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/orders/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/products/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/products/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/products/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/products/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/products/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/region/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/region/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/region/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/region/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/region/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/shippers/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/shippers/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/shippers/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/shippers/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/shippers/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/suppliers/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/suppliers/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/suppliers/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/suppliers/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/suppliers/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/territories/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/territories/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/territories/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/territories/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/territories/schema.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/usStates/relationships.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/usStates/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/usStates/rules.json -------------------------------------------------------------------------------- /app-services/production-app/data_sources/mongodb-atlas/northwind/usStates/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/data_sources/mongodb-atlas/northwind/usStates/schema.json -------------------------------------------------------------------------------- /app-services/production-app/environments/development.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": {} 3 | } 4 | -------------------------------------------------------------------------------- /app-services/production-app/environments/no-environment.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": {} 3 | } 4 | -------------------------------------------------------------------------------- /app-services/production-app/environments/production.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": {} 3 | } 4 | -------------------------------------------------------------------------------- /app-services/production-app/environments/qa.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": {} 3 | } 4 | -------------------------------------------------------------------------------- /app-services/production-app/environments/testing.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": {} 3 | } 4 | -------------------------------------------------------------------------------- /app-services/production-app/functions/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/config.json -------------------------------------------------------------------------------- /app-services/production-app/functions/funcDescribeSalesOrderViaChatGPT35Turbo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/funcDescribeSalesOrderViaChatGPT35Turbo.js -------------------------------------------------------------------------------- /app-services/production-app/functions/funcEmbedNorthwindOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/funcEmbedNorthwindOrders.js -------------------------------------------------------------------------------- /app-services/production-app/functions/funcSearchOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/funcSearchOrders.js -------------------------------------------------------------------------------- /app-services/production-app/functions/funcVectorSearchOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/funcVectorSearchOrders.js -------------------------------------------------------------------------------- /app-services/production-app/functions/funcVectorizeStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/funcVectorizeStrings.js -------------------------------------------------------------------------------- /app-services/production-app/functions/funcVectorizeWithOpenAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/funcVectorizeWithOpenAI.js -------------------------------------------------------------------------------- /app-services/production-app/functions/resetFunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/functions/resetFunc.js -------------------------------------------------------------------------------- /app-services/production-app/graphql/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/graphql/config.json -------------------------------------------------------------------------------- /app-services/production-app/graphql/custom_resolvers/query_searchOrders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/graphql/custom_resolvers/query_searchOrders.json -------------------------------------------------------------------------------- /app-services/production-app/graphql/custom_resolvers/query_vectorSearchOrders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/graphql/custom_resolvers/query_vectorSearchOrders.json -------------------------------------------------------------------------------- /app-services/production-app/hosting/metadata.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app-services/production-app/http_endpoints/config.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /app-services/production-app/realm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/realm_config.json -------------------------------------------------------------------------------- /app-services/production-app/sync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/sync/config.json -------------------------------------------------------------------------------- /app-services/production-app/triggers/trgEmbedNorthwindOrders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/triggers/trgEmbedNorthwindOrders.json -------------------------------------------------------------------------------- /app-services/production-app/triggers/trgVectorizeStrings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/triggers/trgVectorizeStrings.json -------------------------------------------------------------------------------- /app-services/production-app/values/openAI_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-services/production-app/values/openAI_value.json -------------------------------------------------------------------------------- /app-swift/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app-swift/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app-swift/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /app-swift/App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /app-swift/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /app-swift/App/AppConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/AppConfig.swift -------------------------------------------------------------------------------- /app-swift/App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /app-swift/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app-swift/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app-swift/App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app-swift/App/Realm.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Realm.plist -------------------------------------------------------------------------------- /app-swift/App/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/ContentView.swift -------------------------------------------------------------------------------- /app-swift/App/Views/CreateItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/CreateItemView.swift -------------------------------------------------------------------------------- /app-swift/App/Views/ErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/ErrorView.swift -------------------------------------------------------------------------------- /app-swift/App/Views/ItemDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/ItemDetail.swift -------------------------------------------------------------------------------- /app-swift/App/Views/ItemList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/ItemList.swift -------------------------------------------------------------------------------- /app-swift/App/Views/ItemRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/ItemRow.swift -------------------------------------------------------------------------------- /app-swift/App/Views/ItemsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/ItemsView.swift -------------------------------------------------------------------------------- /app-swift/App/Views/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/LoginView.swift -------------------------------------------------------------------------------- /app-swift/App/Views/LogoutButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/LogoutButton.swift -------------------------------------------------------------------------------- /app-swift/App/Views/OpenRealmView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/OpenRealmView.swift -------------------------------------------------------------------------------- /app-swift/App/Views/OrderDetailsDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/OrderDetailsDetails.swift -------------------------------------------------------------------------------- /app-swift/App/Views/OrderDetailsDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/OrderDetailsDetailsView.swift -------------------------------------------------------------------------------- /app-swift/App/Views/OrderDetailsList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/OrderDetailsList.swift -------------------------------------------------------------------------------- /app-swift/App/Views/OrderDetailsRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/Views/OrderDetailsRow.swift -------------------------------------------------------------------------------- /app-swift/App/order.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/order.swift -------------------------------------------------------------------------------- /app-swift/App/order_customer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/order_customer.swift -------------------------------------------------------------------------------- /app-swift/App/order_employee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/order_employee.swift -------------------------------------------------------------------------------- /app-swift/App/order_orderDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/order_orderDetails.swift -------------------------------------------------------------------------------- /app-swift/App/order_orderDetails_product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/order_orderDetails_product.swift -------------------------------------------------------------------------------- /app-swift/App/realmApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/App/realmApp.swift -------------------------------------------------------------------------------- /app-swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/app-swift/README.md -------------------------------------------------------------------------------- /atlas/clean-colls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/atlas/clean-colls.js -------------------------------------------------------------------------------- /atlas/search-indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/atlas/search-indexes.json -------------------------------------------------------------------------------- /img/app-svc-key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/app-svc-key.gif -------------------------------------------------------------------------------- /img/categories-index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/categories-index.gif -------------------------------------------------------------------------------- /img/create-keypair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/create-keypair.gif -------------------------------------------------------------------------------- /img/demo-components.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/demo-components.jpg -------------------------------------------------------------------------------- /img/orders-index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/orders-index.gif -------------------------------------------------------------------------------- /img/orders_mappings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/orders_mappings.jpg -------------------------------------------------------------------------------- /img/postman-variables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/postman-variables.jpg -------------------------------------------------------------------------------- /img/save-vars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/save-vars.gif -------------------------------------------------------------------------------- /img/swift-app-config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/img/swift-app-config.jpg -------------------------------------------------------------------------------- /postgres/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/postgres/backup.sh -------------------------------------------------------------------------------- /postgres/northwind.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/postgres/northwind.sql -------------------------------------------------------------------------------- /postman/liberate-data - GraphQL.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/postman/liberate-data - GraphQL.postman_collection.json -------------------------------------------------------------------------------- /relational-migrator/liberate-data.relmig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/liberate-data/HEAD/relational-migrator/liberate-data.relmig --------------------------------------------------------------------------------