diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..069c3db --- /dev/null +++ b/package-lock.json @@ -0,0 +1,73 @@ +{ + "name": "backend", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@prisma/cli": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.7.1.tgz", + "integrity": "sha512-0uA+gWkNQ35DveVHDPltiTCTr4wcXtEhnPs463IEM+Xn8dTv9x0gtZiYHSuQM3t7uwlOxj1rurBsqSbiljynfQ==", + "dev": true + }, + "@prisma/client": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.7.1.tgz", + "integrity": "sha512-IEWDCuvIaQTira8/jAyf+uY+AuPPUFDIXMSN4zEA/gvoJv2woq7RmkaubS+NQVgDbbyOR6F3UcXLiFTYQDzZkQ==", + "requires": { + "pkg-up": "^3.1.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "requires": { + "find-up": "^3.0.0" + } + } + } +} diff --git a/package.json b/package.json index 56f6809..bf79765 100644 --- a/package.json +++ b/package.json @@ -4,13 +4,14 @@ "main": "src/index.ts", "license": "MIT", "dependencies": { + "@prisma/client": "^2.7.1", "graphql-yoga": "^1.18.3" }, "scripts": { "dev": "ts-node src/index.ts" }, "devDependencies": { - "@prisma/cli": "^2.8.0", + "@prisma/cli": "^2.7.1", "ts-node": "^9.0.0", "typescript": "^4.0.3" } diff --git a/prisma/dev.db b/prisma/dev.db new file mode 100644 index 0000000..6f8ead2 Binary files /dev/null and b/prisma/dev.db differ diff --git a/prisma/migrations/20201003131039-initial-structure/README.md b/prisma/migrations/20201003131039-initial-structure/README.md new file mode 100644 index 0000000..84cc855 --- /dev/null +++ b/prisma/migrations/20201003131039-initial-structure/README.md @@ -0,0 +1,103 @@ +# Migration `20201003131039-initial-structure` + +This migration has been generated by Dm1tr1y147 at 10/3/2020, 6:10:39 PM. +You can check out the [state of the schema](./schema.prisma) after the migration. + +## Database Steps + +```sql +CREATE TABLE "User" ( + "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + "name" TEXT NOT NULL, + "email" TEXT, + "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP +) + +CREATE TABLE "Poll" ( + "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + "userId" INTEGER, + "title" TEXT NOT NULL, + "description" TEXT, + "slug" TEXT NOT NULL, + "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, + + FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE SET NULL ON UPDATE CASCADE +) + +CREATE TABLE "Question" ( + "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + "pollId" INTEGER, + "title" TEXT NOT NULL, + + FOREIGN KEY ("pollId") REFERENCES "Poll"("id") ON DELETE SET NULL ON UPDATE CASCADE +) + +CREATE TABLE "Variant" ( + "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + "questionId" INTEGER, + "text" TEXT NOT NULL, + "count" INTEGER NOT NULL DEFAULT 0, + + FOREIGN KEY ("questionId") REFERENCES "Question"("id") ON DELETE SET NULL ON UPDATE CASCADE +) + +CREATE UNIQUE INDEX "Poll.slug_unique" ON "Poll"("slug") +``` + +## Changes + +```diff +diff --git schema.prisma schema.prisma +migration ..20201003131039-initial-structure +--- datamodel.dml ++++ datamodel.dml +@@ -1,0 +1,46 @@ ++// This is your Prisma schema file, ++// learn more about it in the docs: https://pris.ly/d/prisma-schema ++ ++datasource db { ++ provider = "sqlite" ++ url = "***" ++} ++ ++generator client { ++ provider = "prisma-client-js" ++} ++ ++model User { ++ id Int @id @default(autoincrement()) ++ name String ++ email String? ++ createdAt DateTime @default(now()) ++ polls Poll[] ++} ++ ++model Poll { ++ id Int @id @default(autoincrement()) ++ User User? @relation(fields: [userId], references: [id]) ++ userId Int? ++ title String ++ description String? ++ slug String @unique ++ questions Question[] ++ createdAt DateTime @default(now()) ++} ++ ++model Question { ++ id Int @id @default(autoincrement()) ++ Poll Poll? @relation(fields: [pollId], references: [id]) ++ pollId Int? ++ title String ++ variants Variant[] ++} ++ ++model Variant { ++ id Int @id @default(autoincrement()) ++ Question Question? @relation(fields: [questionId], references: [id]) ++ questionId Int? ++ text String ++ count Int @default(0) ++} +``` + + diff --git a/prisma/migrations/20201003131039-initial-structure/schema.prisma b/prisma/migrations/20201003131039-initial-structure/schema.prisma new file mode 100644 index 0000000..5a286f8 --- /dev/null +++ b/prisma/migrations/20201003131039-initial-structure/schema.prisma @@ -0,0 +1,46 @@ +// This is your Prisma schema file, +// learn more about it in the docs: https://pris.ly/d/prisma-schema + +datasource db { + provider = "sqlite" + url = "***" +} + +generator client { + provider = "prisma-client-js" +} + +model User { + id Int @id @default(autoincrement()) + name String + email String? + createdAt DateTime @default(now()) + polls Poll[] +} + +model Poll { + id Int @id @default(autoincrement()) + User User? @relation(fields: [userId], references: [id]) + userId Int? + title String + description String? + slug String @unique + questions Question[] + createdAt DateTime @default(now()) +} + +model Question { + id Int @id @default(autoincrement()) + Poll Poll? @relation(fields: [pollId], references: [id]) + pollId Int? + title String + variants Variant[] +} + +model Variant { + id Int @id @default(autoincrement()) + Question Question? @relation(fields: [questionId], references: [id]) + questionId Int? + text String + count Int @default(0) +} \ No newline at end of file diff --git a/prisma/migrations/20201003131039-initial-structure/steps.json b/prisma/migrations/20201003131039-initial-structure/steps.json new file mode 100644 index 0000000..868d111 --- /dev/null +++ b/prisma/migrations/20201003131039-initial-structure/steps.json @@ -0,0 +1,551 @@ +{ + "version": "0.3.14-fixed", + "steps": [ + { + "tag": "CreateSource", + "source": "db" + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Source", + "source": "db" + }, + "argument": "provider", + "value": "\"sqlite\"" + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Source", + "source": "db" + }, + "argument": "url", + "value": "\"***\"" + }, + { + "tag": "CreateModel", + "model": "User" + }, + { + "tag": "CreateField", + "model": "User", + "field": "id", + "type": "Int", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "User", + "field": "id" + }, + "directive": "id" + } + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "User", + "field": "id" + }, + "directive": "default" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "User", + "field": "id" + }, + "directive": "default" + }, + "argument": "", + "value": "autoincrement()" + }, + { + "tag": "CreateField", + "model": "User", + "field": "name", + "type": "String", + "arity": "Required" + }, + { + "tag": "CreateField", + "model": "User", + "field": "email", + "type": "String", + "arity": "Optional" + }, + { + "tag": "CreateField", + "model": "User", + "field": "createdAt", + "type": "DateTime", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "User", + "field": "createdAt" + }, + "directive": "default" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "User", + "field": "createdAt" + }, + "directive": "default" + }, + "argument": "", + "value": "now()" + }, + { + "tag": "CreateField", + "model": "User", + "field": "polls", + "type": "Poll", + "arity": "List" + }, + { + "tag": "CreateModel", + "model": "Poll" + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "id", + "type": "Int", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Poll", + "field": "id" + }, + "directive": "id" + } + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Poll", + "field": "id" + }, + "directive": "default" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Poll", + "field": "id" + }, + "directive": "default" + }, + "argument": "", + "value": "autoincrement()" + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "User", + "type": "User", + "arity": "Optional" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Poll", + "field": "User" + }, + "directive": "relation" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Poll", + "field": "User" + }, + "directive": "relation" + }, + "argument": "fields", + "value": "[userId]" + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Poll", + "field": "User" + }, + "directive": "relation" + }, + "argument": "references", + "value": "[id]" + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "userId", + "type": "Int", + "arity": "Optional" + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "title", + "type": "String", + "arity": "Required" + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "description", + "type": "String", + "arity": "Optional" + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "slug", + "type": "String", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Poll", + "field": "slug" + }, + "directive": "unique" + } + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "questions", + "type": "Question", + "arity": "List" + }, + { + "tag": "CreateField", + "model": "Poll", + "field": "createdAt", + "type": "DateTime", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Poll", + "field": "createdAt" + }, + "directive": "default" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Poll", + "field": "createdAt" + }, + "directive": "default" + }, + "argument": "", + "value": "now()" + }, + { + "tag": "CreateModel", + "model": "Question" + }, + { + "tag": "CreateField", + "model": "Question", + "field": "id", + "type": "Int", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Question", + "field": "id" + }, + "directive": "id" + } + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Question", + "field": "id" + }, + "directive": "default" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Question", + "field": "id" + }, + "directive": "default" + }, + "argument": "", + "value": "autoincrement()" + }, + { + "tag": "CreateField", + "model": "Question", + "field": "Poll", + "type": "Poll", + "arity": "Optional" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Question", + "field": "Poll" + }, + "directive": "relation" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Question", + "field": "Poll" + }, + "directive": "relation" + }, + "argument": "fields", + "value": "[pollId]" + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Question", + "field": "Poll" + }, + "directive": "relation" + }, + "argument": "references", + "value": "[id]" + }, + { + "tag": "CreateField", + "model": "Question", + "field": "pollId", + "type": "Int", + "arity": "Optional" + }, + { + "tag": "CreateField", + "model": "Question", + "field": "title", + "type": "String", + "arity": "Required" + }, + { + "tag": "CreateField", + "model": "Question", + "field": "variants", + "type": "Variant", + "arity": "List" + }, + { + "tag": "CreateModel", + "model": "Variant" + }, + { + "tag": "CreateField", + "model": "Variant", + "field": "id", + "type": "Int", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Variant", + "field": "id" + }, + "directive": "id" + } + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Variant", + "field": "id" + }, + "directive": "default" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Variant", + "field": "id" + }, + "directive": "default" + }, + "argument": "", + "value": "autoincrement()" + }, + { + "tag": "CreateField", + "model": "Variant", + "field": "Question", + "type": "Question", + "arity": "Optional" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Variant", + "field": "Question" + }, + "directive": "relation" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Variant", + "field": "Question" + }, + "directive": "relation" + }, + "argument": "fields", + "value": "[questionId]" + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Variant", + "field": "Question" + }, + "directive": "relation" + }, + "argument": "references", + "value": "[id]" + }, + { + "tag": "CreateField", + "model": "Variant", + "field": "questionId", + "type": "Int", + "arity": "Optional" + }, + { + "tag": "CreateField", + "model": "Variant", + "field": "text", + "type": "String", + "arity": "Required" + }, + { + "tag": "CreateField", + "model": "Variant", + "field": "count", + "type": "Int", + "arity": "Required" + }, + { + "tag": "CreateDirective", + "location": { + "path": { + "tag": "Field", + "model": "Variant", + "field": "count" + }, + "directive": "default" + } + }, + { + "tag": "CreateArgument", + "location": { + "tag": "Directive", + "path": { + "tag": "Field", + "model": "Variant", + "field": "count" + }, + "directive": "default" + }, + "argument": "", + "value": "0" + } + ] +} \ No newline at end of file diff --git a/prisma/migrations/migrate.lock b/prisma/migrations/migrate.lock new file mode 100644 index 0000000..0a8e6d9 --- /dev/null +++ b/prisma/migrations/migrate.lock @@ -0,0 +1,3 @@ +# Prisma Migrate lockfile v1 + +20201003131039-initial-structure \ No newline at end of file diff --git a/prisma/schema.prisma b/prisma/schema.prisma index f63f7fb..c9f7611 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -3,9 +3,44 @@ datasource db { provider = "sqlite" - url = "./dev.db" + url = "file:./dev.db" } generator client { provider = "prisma-client-js" } + +model User { + id Int @id @default(autoincrement()) + name String + email String? + createdAt DateTime @default(now()) + polls Poll[] +} + +model Poll { + id Int @id @default(autoincrement()) + User User? @relation(fields: [userId], references: [id]) + userId Int? + title String + description String? + slug String @unique @default(cuid()) + questions Question[] + createdAt DateTime @default(now()) +} + +model Question { + id Int @id @default(autoincrement()) + Poll Poll? @relation(fields: [pollId], references: [id]) + pollId Int? + title String + variants Variant[] +} + +model Variant { + id Int @id @default(autoincrement()) + Question Question? @relation(fields: [questionId], references: [id]) + questionId Int? + text String + count Int @default(0) +}