Api

Utils

Discover all available utils.

defineMongooseModel

This function creates a new Mongoose model with schema. Example usage:

import { defineMongooseModel } from '#nuxt/mongoose'

export const User = defineMongooseModel({
  name: 'User',
  schema: {
    email: {
      type: 'string',
      required: true,
      unique: true,
    },
  },
  options: {
    
  },
  hooks(schema) {

  },
})
KeyTypeRequireDescription
namestringtrueName of Model
schemaSchemaDefinitiontrueSchema Definition of Model
optionsSchemaOptionsfalseSchema Options for Model
hooks(schema: Schema<T>) => voidfalseSchema Hooks Function to customize Model

you can access the default connection with importing it from mongoose:

import { connection } from 'mongoose'

defineMongooseConnection

This function creates a new Mongoose connection.

  • nuxt-mongoose provides a default connection for you, it auto-register a plugin in nitro, so you don't need to use this function unless you want to create a new connection. more info here.

Example usage:

import { defineMongooseConnection } from '#nuxt/mongoose'

export const connection = defineMongooseConnection('mongodb://127.0.0.1/nuxt-mongoose')