InterfaceSampleData
talawa-api / models/SampleData / InterfaceSampleData
Interface: InterfaceSampleData
Interface representing a document for sample data in the database (MongoDB).
Extends
Document
Properties
__v?
> optional
__v: any
This documents __v.
Inherited from
Document.__v
Defined in
node_modules/mongoose/types/document.d.ts:26
_id?
> optional
_id: any
This documents _id.
Inherited from
Document._id
Defined in
node_modules/mongoose/types/document.d.ts:23
$locals
> $locals: Record
<string
, unknown
>
Empty object that you can use for storing properties on the document. This is handy for passing data to middleware without conflicting with Mongoose internals.
Inherited from
Document.$locals
Defined in
node_modules/mongoose/types/document.d.ts:71
$op
> $op: null
| "validate"
| "save"
| "remove"
A string containing the current operation that Mongoose is executing
on this document. Can be null
, 'save'
, 'validate'
, or 'remove'
.
Inherited from
Document.$op
Defined in
node_modules/mongoose/types/document.d.ts:84
$where
> $where: Record
<string
, unknown
>
Set this property to add additional query filters when Mongoose saves this document and isNew
is false.
Inherited from
Document.$where
Defined in
node_modules/mongoose/types/document.d.ts:99
baseModelName?
> optional
baseModelName: string
If this is a discriminator model, baseModelName
is the name of the base model.
Inherited from
Document.baseModelName
Defined in
node_modules/mongoose/types/document.d.ts:102
collection
> collection: Collection
<Document
>
Collection the model uses.
Inherited from
Document.collection
Defined in
node_modules/mongoose/types/document.d.ts:105
collectionName
> collectionName: "User"
| "Organization"
| "Post"
| "Event"
| "AppUserProfile"
| "Plugin"
| "Venue"
Defined in
db
> db: Connection
Connection the model uses.
Inherited from
Document.db
Defined in
node_modules/mongoose/types/document.d.ts:108
documentId
> documentId: string
Defined in
errors?
> optional
errors: ValidationError
Returns the current validation errors.
Inherited from
Document.errors
Defined in
node_modules/mongoose/types/document.d.ts:142
id?
> optional
id: any
The string version of this documents _id.
Inherited from
Document.id
Defined in
node_modules/mongoose/types/document.d.ts:155
isNew
> isNew: boolean
Boolean flag specifying if the document is new.
Inherited from
Document.isNew
Defined in
node_modules/mongoose/types/document.d.ts:191
schema
> schema: Schema
<any
, Model
<any
, any
, any
, any
, any
, any
>, {}, {}, {}, {}, DefaultSchemaOptions
, {}, Document
<unknown
, {}, FlatRecord
<{}>> & FlatRecord
<{}> & Required
<{ _id
: unknown
; }>>
The document's schema.
Inherited from
Document.schema
Defined in
node_modules/mongoose/types/document.d.ts:235
Methods
$assertPopulated()
> $assertPopulated<Paths
>(path
, values
?): Omit
<InterfaceSampleData
, keyof Paths
> & Paths
Assert that a given path or paths is populated. Throws an error if not populated.
Type Parameters
• Paths = {}
Parameters
path
string
| string
[]
values?
Partial
<Paths
>
Returns
Omit
<InterfaceSampleData
, keyof Paths
> & Paths
Inherited from
Document.$assertPopulated
Defined in
node_modules/mongoose/types/document.d.ts:29
$clone()
> $clone(): this
Returns a deep clone of this document
Returns
this
Inherited from
Document.$clone
Defined in
node_modules/mongoose/types/document.d.ts:32
$getAllSubdocs()
> $getAllSubdocs(): Document
<any
, any
, any
>[]
Returns
Document
<any
, any
, any
>[]
Inherited from
Document.$getAllSubdocs
Defined in
node_modules/mongoose/types/document.d.ts:35
$getPopulatedDocs()
> $getPopulatedDocs(): Document
<any
, any
, any
>[]
Returns an array of all populated documents associated with the query
Returns
Document
<any
, any
, any
>[]
Inherited from
Document.$getPopulatedDocs
Defined in
node_modules/mongoose/types/document.d.ts:47
$ignore()
> $ignore(path
): void
Don't run validation on this path or persist changes to this path.
Parameters
path
string
Returns
void
Inherited from
Document.$ignore
Defined in
node_modules/mongoose/types/document.d.ts:38
$inc()
> $inc(path
, val
?): this
Increments the numeric value at path
by the given val
.
When you call save()
on this document, Mongoose will send a
$inc
as opposed to a $set
.
Parameters
path
string
| string
[]
val?
number
Returns
this
Inherited from
Document.$inc
Defined in
node_modules/mongoose/types/document.d.ts:54
$isDefault()
> $isDefault(path
): boolean
Checks if a path is set to its default.
Parameters
path
string
Returns
boolean
Inherited from
Document.$isDefault
Defined in
node_modules/mongoose/types/document.d.ts:41
$isDeleted()
> $isDeleted(val
?): boolean
Getter/setter, determines whether the document was removed or not.
Parameters
val?
boolean
Returns
boolean
Inherited from
Document.$isDeleted
Defined in
node_modules/mongoose/types/document.d.ts:44
$isEmpty()
> $isEmpty(path
): boolean
Returns true if the given path is nullish or only contains empty objects. Useful for determining whether this subdoc will get stripped out by the minimize option.
Parameters
path
string
Returns
boolean
Inherited from
Document.$isEmpty
Defined in
node_modules/mongoose/types/document.d.ts:61
$isValid()
> $isValid(path
): boolean
Checks if a path is invalid
Parameters
path
string
Returns
boolean
Inherited from
Document.$isValid
Defined in
node_modules/mongoose/types/document.d.ts:64
$markValid()
> $markValid(path
): void
Marks a path as valid, removing existing validation errors.
Parameters
path
string
Returns
void
Inherited from
Document.$markValid
Defined in
node_modules/mongoose/types/document.d.ts:74
$model()
Call Signature
> $model<ModelType
>(name
): ModelType
Returns the model with the given name on this document's associated connection.
Type Parameters
• ModelType = Model
<unknown
, {}, {}, {}, Document
<unknown
, {}, unknown
> & object
, any
>
Parameters
name
string
Returns
ModelType
Inherited from
Document.$model
Defined in
node_modules/mongoose/types/document.d.ts:77
Call Signature
> $model<ModelType
>(): ModelType
Returns the model with the given name on this document's associated connection.
Type Parameters
• ModelType = Model
<any
, {}, {}, {}, any
, any
>
Returns
ModelType
Inherited from
Document.$model
Defined in
node_modules/mongoose/types/document.d.ts:78
$parent()
> $parent(): undefined
| Document
<any
, any
, any
>
If this document is a subdocument or populated document, returns the document's parent. Returns undefined otherwise.
Returns
undefined
| Document
<any
, any
, any
>
Inherited from
Document.$parent
Defined in
node_modules/mongoose/types/document.d.ts:219
$session()
> $session(session
?): null
| ClientSession
Getter/setter around the session associated with this document. Used to
automatically set session
if you save()
a doc that you got from a
query with an associated session.
Parameters
session?
null
| ClientSession
Returns
null
| ClientSession
Inherited from
Document.$session
Defined in
node_modules/mongoose/types/document.d.ts:91
$set()
Call Signature
> $set(path
, val
, type
, options
?): this
Alias for set()
, used internally to avoid conflicts
Parameters
path
string
| Record
<string
, any
>
val
any
type
any
options?
DocumentSetOptions
Returns
this
Inherited from
Document.$set
Defined in
node_modules/mongoose/types/document.d.ts:94
Call Signature
> $set(path
, val
, options
?): this
Alias for set()
, used internally to avoid conflicts
Parameters
path
string
| Record
<string
, any
>
val
any
options?
DocumentSetOptions
Returns
this
Inherited from
Document.$set
Defined in
node_modules/mongoose/types/document.d.ts:95
Call Signature
> $set(value
): this
Alias for set()
, used internally to avoid conflicts
Parameters
value
string
| Record
<string
, any
>
Returns
this
Inherited from
Document.$set
Defined in
node_modules/mongoose/types/document.d.ts:96
deleteOne()
> deleteOne(options
?): any
Removes this document from the db.
Parameters
options?
QueryOptions
<unknown
>
Returns
any
Inherited from
Document.deleteOne
Defined in
node_modules/mongoose/types/document.d.ts:111
depopulate()
> depopulate(path
?): this
Takes a populated field and returns it to its unpopulated state. If called with no arguments, then all populated fields are returned to their unpopulated state.
Parameters
path?
string
| string
[]
Returns
this
Inherited from
Document.depopulate
Defined in
node_modules/mongoose/types/document.d.ts:123
directModifiedPaths()
> directModifiedPaths(): string
[]
Returns the list of paths that have been directly modified. A direct
modified path is a path that you explicitly set, whether via doc.foo = 'bar'
,
Object.assign(doc, \{ foo: 'bar' \})
, or doc.set('foo', 'bar')
.
Returns
string
[]
Inherited from
Document.directModifiedPaths
Defined in
node_modules/mongoose/types/document.d.ts:130
equals()
> equals(doc
): boolean
Returns true if this document is equal to another document.
Documents are considered equal when they have matching _id
s, unless neither
document has an _id
, in which case this function falls back to using
deepEqual()
.
Parameters
doc
Document
<any
, any
, any
>
Returns
boolean
Inherited from
Document.equals
Defined in
node_modules/mongoose/types/document.d.ts:139
get()
Call Signature
> get<T
>(path
, type
?, options
?): any
Returns the value of a path.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
type?
any
options?
any
Returns
any
Inherited from
Document.get
Defined in
node_modules/mongoose/types/document.d.ts:145
Call Signature
> get(path
, type
?, options
?): any
Returns the value of a path.
Parameters
path
string
type?
any
options?
any
Returns
any
Inherited from
Document.get
Defined in
node_modules/mongoose/types/document.d.ts:146
getChanges()
> getChanges(): UpdateQuery
<InterfaceSampleData
>
Returns the changes that happened to the document in the format that will be sent to MongoDB.
Returns
UpdateQuery
<InterfaceSampleData
>
Inherited from
Document.getChanges
Defined in
node_modules/mongoose/types/document.d.ts:152
increment()
> increment(): this
Signal that we desire an increment of this documents version.
Returns
this
Inherited from
Document.increment
Defined in
node_modules/mongoose/types/document.d.ts:158
init()
> init(obj
, opts
?): this
Initializes the document without setters or marking anything modified. Called internally after a document is returned from mongodb. Normally, you do not need to call this function on your own.
Parameters
obj
AnyObject
opts?
AnyObject
Returns
this
Inherited from
Document.init
Defined in
node_modules/mongoose/types/document.d.ts:165
invalidate()
Call Signature
> invalidate<T
>(path
, errorMsg
, value
?, kind
?): null
| NativeError
Marks a path as invalid, causing validation to fail.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
errorMsg
string
| NativeError
value?
any
kind?
string
Returns
null
| NativeError
Inherited from
Document.invalidate
Defined in
node_modules/mongoose/types/document.d.ts:168
Call Signature
> invalidate(path
, errorMsg
, value
?, kind
?): null
| NativeError
Marks a path as invalid, causing validation to fail.
Parameters
path
string
errorMsg
string
| NativeError
value?
any
kind?
string
Returns
null
| NativeError
Inherited from
Document.invalidate
Defined in
node_modules/mongoose/types/document.d.ts:169
isDirectModified()
Call Signature
> isDirectModified<T
>(path
): boolean
Returns true if path
was directly set and modified, else false.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
| T
[]
Returns
boolean
Inherited from
Document.isDirectModified
Defined in
node_modules/mongoose/types/document.d.ts:172
Call Signature
> isDirectModified(path
): boolean
Returns true if path
was directly set and modified, else false.
Parameters
path
string
| string
[]
Returns
boolean
Inherited from
Document.isDirectModified
Defined in
node_modules/mongoose/types/document.d.ts:173
isDirectSelected()
Call Signature
> isDirectSelected<T
>(path
): boolean
Checks if path
was explicitly selected. If no projection, always returns true.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
Returns
boolean
Inherited from
Document.isDirectSelected
Defined in
node_modules/mongoose/types/document.d.ts:176
Call Signature
> isDirectSelected(path
): boolean
Checks if path
was explicitly selected. If no projection, always returns true.
Parameters
path
string
Returns
boolean
Inherited from
Document.isDirectSelected
Defined in
node_modules/mongoose/types/document.d.ts:177
isInit()
Call Signature
> isInit<T
>(path
): boolean
Checks if path
is in the init
state, that is, it was set by Document#init()
and not modified since.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
Returns
boolean
Inherited from
Document.isInit
Defined in
node_modules/mongoose/types/document.d.ts:180
Call Signature
> isInit(path
): boolean
Checks if path
is in the init
state, that is, it was set by Document#init()
and not modified since.
Parameters
path
string
Returns
boolean
Inherited from
Document.isInit
Defined in
node_modules/mongoose/types/document.d.ts:181
isModified()
Call Signature
> isModified<T
>(path
?, options
?): boolean
Returns true if any of the given paths are modified, else false. If no arguments, returns true
if any path
in this document is modified.
Type Parameters
• T extends string
| number
| symbol
Parameters
path?
T
| T
[]
options?
null
| { ignoreAtomics
: boolean
; }
Returns
boolean
Inherited from
Document.isModified
Defined in
node_modules/mongoose/types/document.d.ts:187
Call Signature
> isModified(path
?, options
?): boolean
Returns true if any of the given paths are modified, else false. If no arguments, returns true
if any path
in this document is modified.
Parameters
path?
string
| string
[]
options?
null
| { ignoreAtomics
: boolean
; }
Returns
boolean
Inherited from
Document.isModified
Defined in
node_modules/mongoose/types/document.d.ts:188
isSelected()
Call Signature
> isSelected<T
>(path
): boolean
Checks if path
was selected in the source query which initialized this document.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
Returns
boolean
Inherited from
Document.isSelected
Defined in
node_modules/mongoose/types/document.d.ts:194
Call Signature
> isSelected(path
): boolean
Checks if path
was selected in the source query which initialized this document.
Parameters
path
string
Returns
boolean
Inherited from
Document.isSelected
Defined in
node_modules/mongoose/types/document.d.ts:195
markModified()
Call Signature
> markModified<T
>(path
, scope
?): void
Marks the path as having pending changes to write to the db.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
scope?
any
Returns
void
Inherited from
Document.markModified
Defined in
node_modules/mongoose/types/document.d.ts:198
Call Signature
> markModified(path
, scope
?): void
Marks the path as having pending changes to write to the db.
Parameters
path
string
scope?
any
Returns
void
Inherited from
Document.markModified
Defined in
node_modules/mongoose/types/document.d.ts:199
model()
Call Signature
> model<ModelType
>(name
): ModelType
Returns the model with the given name on this document's associated connection.
Type Parameters
• ModelType = Model
<unknown
, {}, {}, {}, Document
<unknown
, {}, unknown
> & object
, any
>
Parameters
name
string
Returns
ModelType
Inherited from
Document.model
Defined in
node_modules/mongoose/types/document.d.ts:202
Call Signature
> model<ModelType
>(): ModelType
Returns the model with the given name on this document's associated connection.
Type Parameters
• ModelType = Model
<any
, {}, {}, {}, any
, any
>
Returns
ModelType
Inherited from
Document.model
Defined in
node_modules/mongoose/types/document.d.ts:203
modifiedPaths()
> modifiedPaths(options
?): string
[]
Returns the list of paths that have been modified.
Parameters
options?
includeChildren
boolean
Returns
string
[]
Inherited from
Document.modifiedPaths
Defined in
node_modules/mongoose/types/document.d.ts:206
overwrite()
> overwrite(obj
): this
Overwrite all values in this document with the values of obj
, except
for immutable properties. Behaves similarly to set()
, except for it
unsets all properties that aren't in obj
.
Parameters
obj
AnyObject
Returns
this
Inherited from
Document.overwrite
Defined in
node_modules/mongoose/types/document.d.ts:213
populate()
Call Signature
> populate<Paths
>(path
): Promise
<MergeType
<InterfaceSampleData
, Paths
>>
Populates document references.
Type Parameters
• Paths = {}
Parameters
path
string
| PopulateOptions
| (string
| PopulateOptions
)[]
Returns
Promise
<MergeType
<InterfaceSampleData
, Paths
>>
Inherited from
Document.populate
Defined in
node_modules/mongoose/types/document.d.ts:222
Call Signature
> populate<Paths
>(path
, select
?, model
?, match
?, options
?): Promise
<MergeType
<InterfaceSampleData
, Paths
>>
Populates document references.
Type Parameters
• Paths = {}
Parameters
path
string
select?
string
| AnyObject
model?
Model
<any
, {}, {}, {}, any
, any
>
match?
AnyObject
options?
PopulateOptions
Returns
Promise
<MergeType
<InterfaceSampleData
, Paths
>>
Inherited from
Document.populate
Defined in
node_modules/mongoose/types/document.d.ts:223
populated()
> populated(path
): any
Gets _id(s) used during population of the given path
. If the path was not populated, returns undefined
.
Parameters
path
string
Returns
any
Inherited from
Document.populated
Defined in
node_modules/mongoose/types/document.d.ts:226
replaceOne()
> replaceOne(replacement
?, options
?): Query
<any
, InterfaceSampleData
, {}, InterfaceSampleData
, "find"
, Record
<string
, never
>>
Sends a replaceOne command with this document _id
as the query selector.
Parameters
replacement?
AnyObject
options?
null
| QueryOptions
<unknown
>
Returns
Query
<any
, InterfaceSampleData
, {}, InterfaceSampleData
, "find"
, Record
<string
, never
>>
Inherited from
Document.replaceOne
Defined in
node_modules/mongoose/types/document.d.ts:229
save()
> save(options
?): Promise
<InterfaceSampleData
>
Saves this document by inserting a new document into the database if document.isNew is true
, or sends an updateOne operation with just the modified paths if isNew
is false
.
Parameters
options?
SaveOptions
Returns
Promise
<InterfaceSampleData
>
Inherited from
Document.save
Defined in
node_modules/mongoose/types/document.d.ts:232
set()
Call Signature
> set<T
>(path
, val
, type
, options
?): this
Sets the value of a path, or many paths.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
val
any
type
any
options?
DocumentSetOptions
Returns
this
Inherited from
Document.set
Defined in
node_modules/mongoose/types/document.d.ts:238
Call Signature
> set(path
, val
, type
, options
?): this
Sets the value of a path, or many paths.
Parameters
path
string
| Record
<string
, any
>
val
any
type
any
options?
DocumentSetOptions
Returns
this
Inherited from
Document.set
Defined in
node_modules/mongoose/types/document.d.ts:239
Call Signature
> set(path
, val
, options
?): this
Sets the value of a path, or many paths.
Parameters
path
string
| Record
<string
, any
>
val
any
options?
DocumentSetOptions
Returns
this
Inherited from
Document.set
Defined in
node_modules/mongoose/types/document.d.ts:240
Call Signature
> set(value
): this
Sets the value of a path, or many paths.
Parameters
value
string
| Record
<string
, any
>
Returns
this
Inherited from
Document.set
Defined in
node_modules/mongoose/types/document.d.ts:241
toJSON()
Call Signature
> toJSON<T
>(options
?): FlattenMaps
<T
>
The return value of this method is used in calls to JSON.stringify(doc).
Type Parameters
• T = any
Parameters
options?
ToObjectOptions
<Document
<unknown
, {}, unknown
> & object
> & object
Returns
FlattenMaps
<T
>
Inherited from
Document.toJSON
Defined in
node_modules/mongoose/types/document.d.ts:244
Call Signature
> toJSON<T
>(options
): T
The return value of this method is used in calls to JSON.stringify(doc).
Type Parameters
• T = any
Parameters
options
ToObjectOptions
<Document
<unknown
, {}, unknown
> & object
> & object
Returns
T
Inherited from
Document.toJSON
Defined in
node_modules/mongoose/types/document.d.ts:245
toObject()
> toObject<T
>(options
?): Require_id
<T
>
Converts this document into a plain-old JavaScript object (POJO).
Type Parameters
• T = any
Parameters
options?
ToObjectOptions
<Document
<unknown
, {}, unknown
> & object
>
Returns
Require_id
<T
>
Inherited from
Document.toObject
Defined in
node_modules/mongoose/types/document.d.ts:248
unmarkModified()
Call Signature
> unmarkModified<T
>(path
): void
Clears the modified state on the specified path.
Type Parameters
• T extends string
| number
| symbol
Parameters
path
T
Returns
void
Inherited from
Document.unmarkModified
Defined in
node_modules/mongoose/types/document.d.ts:251
Call Signature
> unmarkModified(path
): void
Clears the modified state on the specified path.
Parameters
path
string
Returns
void
Inherited from
Document.unmarkModified
Defined in
node_modules/mongoose/types/document.d.ts:252
updateOne()
> updateOne(update
?, options
?): Query
<any
, InterfaceSampleData
, {}, InterfaceSampleData
, "find"
, Record
<string
, never
>>
Sends an updateOne command with this document _id
as the query selector.
Parameters
update?
UpdateWithAggregationPipeline
| UpdateQuery
<InterfaceSampleData
>
options?
null
| QueryOptions
<unknown
>
Returns
Query
<any
, InterfaceSampleData
, {}, InterfaceSampleData
, "find"
, Record
<string
, never
>>
Inherited from
Document.updateOne
Defined in
node_modules/mongoose/types/document.d.ts:255
validate()
Call Signature
> validate<T
>(pathsToValidate
?, options
?): Promise
<void
>
Executes registered validation rules for this document.
Type Parameters
• T extends string
| number
| symbol
Parameters
pathsToValidate?
T
| T
[]
options?
AnyObject
Returns
Promise
<void
>
Inherited from
Document.validate
Defined in
node_modules/mongoose/types/document.d.ts:258
Call Signature
> validate(pathsToValidate
?, options
?): Promise
<void
>
Executes registered validation rules for this document.
Parameters
pathsToValidate?
PathsToValidate
options?
AnyObject
Returns
Promise
<void
>
Inherited from
Document.validate
Defined in
node_modules/mongoose/types/document.d.ts:259
Call Signature
> validate(options
): Promise
<void
>
Executes registered validation rules for this document.
Parameters
options
pathsToSkip
pathsToSkip
Returns
Promise
<void
>
Inherited from
Document.validate
Defined in
node_modules/mongoose/types/document.d.ts:260
validateSync()
Call Signature
> validateSync(options
): null
| ValidationError
Executes registered validation rules (skipping asynchronous validators) for this document.
Parameters
options
pathsToSkip
pathsToSkip
Returns
null
| ValidationError
Inherited from
Document.validateSync
Defined in
node_modules/mongoose/types/document.d.ts:263
Call Signature
> validateSync<T
>(pathsToValidate
?, options
?): null
| ValidationError
Executes registered validation rules (skipping asynchronous validators) for this document.
Type Parameters
• T extends string
| number
| symbol
Parameters
pathsToValidate?
T
| T
[]
options?
AnyObject
Returns
null
| ValidationError
Inherited from
Document.validateSync
Defined in
node_modules/mongoose/types/document.d.ts:264
Call Signature
> validateSync(pathsToValidate
?, options
?): null
| ValidationError
Executes registered validation rules (skipping asynchronous validators) for this document.
Parameters
pathsToValidate?
PathsToValidate
options?
AnyObject
Returns
null
| ValidationError
Inherited from
Document.validateSync
Defined in
node_modules/mongoose/types/document.d.ts:265