1.3.9 • Published 2 years ago

prisma-aurora v1.3.9

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Aurora (1)

What is Aurora?

Aurora is a CLI tool that stitches together prisma files, which allows you to split up the prisma schema into smaller, easier-to-manage chunks.

Installation

First, install the aurora package as a dev dependency.

npm i --save-dev prisma-aurora

Once installed, create a file named aurora.config.json. This is what Aurora uses to find out which files to put together and where to output the generated combined file.

{
  "files": ["./Datasource.prisma", "./Generator.prisma", "./User.prisma", "./Profile.prisma"],
  "output": "./output/file/path/file.prisma"
}
KeyTypeDescription
FilesString[]A list of paths to .prisma files you want included in the merge (relative to config file location)
OutputStringThe location (including filename) to generate the combined file into.

Running Aurora

Inside your project, you can now run the following command from the directory where your config file lives:

aurora

This will take all of the .prisma files you included in your configuration, combine them, and output them into the specified output file.

How Merging Works

If you have two models in separate files that each have the same name but have different fields, the resulting merged model will have both of the individual models' fields.

Consider, for example, a situation where you have a prisma file for indivdual services in your application. Both files might describe a user differently in the context of their own functionality, but the resulting prisma client will need both sets of definitions.

AuthService.prisma
model User {
    id        Int @id @default(@autoincrement())
    password  String
    email     String
    lastLogin DateTime @map("last_login")
}
ProfileService.prisma
model User {
    id       Int @id @default(@autoincrement())
    username String
    email    String
    age      Int

    @@index([id])
}

After running aurora, the generated schema will look like this:

model User {
    id        Int @id @default(@autoincrement())
    username  String
    email     String
    age       Int
    password  String
    lastLogin DateTime @map("last_login")

    @@index([id])
}

Handling Relations Across Files

One common scenario that arises when splitting the schema out into smaller chunks is having to set up a relation from a model in one file to a model in another file. Aurora will handle this as long as you create an alias to the target relation model in the file you are working in that contains the fields the relationship involves.

For example, consider the scenario where you have an Author model and a Book model, each defined in separate files. An Author may have many Books. Here's how we could define that.

Author.prisma
model Author {
    id        Int @id @default(autoincrement())
    firstName String
    lastName  String
    dob       DateTime
    age       Int
    books     Book[]
}
model Book {
    id Int @id
    authorId Int
    author Author @relation(fields: [authorId], references: [id])
}

Notice in the Book alias here, I only have to define the fields required to make the relationship.

Book.prisma
model Book {
    id          Int @id @default(autoincrement())
    authorId    Int
    author      Author @relation(fields: [authorId], references: [id])
    pages       Int
    releaseDate DateTime
    genre       String
}
model Author {
    id Int @id
    books Book[]
}

The generated schema file will look like this:

model Author {
    id        Int    @id
    books     Book[] @relation(name: "AuthorToBook")
    firstName String
    lastName  String
    dob       DateTime
    age       Int
}
model Book {
    id          Int @id @default(autoincrement())
    authorId    Int
    author      Author? @relation(name: "AuthorToBook", fields: [authorId], references: [id])
    pages       Int
    releaseDate DateTime
    genre       String
}

Aurora merges the fields to create one model with all relations defined.

Technically speaking, in this scenario the Author.prisma file does not need the Book alias or books field on the Author model as those will get merged in from the Book.prisma schema. But I left them in to make the model more explicit.


Contributing

Contributions are very welcome!

Read the Contributing guide to get started.

Missing Something?

If you have any questions or notice anything missing from this project, please feel free to create an issue or reach out to me on twitter

1.3.9

2 years ago

1.3.7

2 years ago

1.3.8

2 years ago

1.3.6

2 years ago

1.3.5

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago