jit
jit
RRailway
Created by jit on 11/10/2023 in #✋|help
Mongo error: Date set by default in railway server is same within a time frame
okay thanks a lot. Let me check it
10 replies
RRailway
Created by jit on 11/10/2023 in #✋|help
Mongo error: Date set by default in railway server is same within a time frame
And how do I check whether it is compatible or not ?
10 replies
RRailway
Created by jit on 11/10/2023 in #✋|help
Mongo error: Date set by default in railway server is same within a time frame
WHat do you mean by client? The nest js app ?
10 replies
RRailway
Created by jit on 11/10/2023 in #✋|help
Mongo error: Date set by default in railway server is same within a time frame
this is my collection schema @Prop({ type: String, required: true, default: new Date().toISOString(), }) dateAdded: string; and this is how the create functionality is implemented const createConversation: CreateConversationDto = { conversationType: 'GhlConversation', body: message, messageType: payload.messageType, resourceId: payload.locationId, direction: direction, channelDetails: { contactId: payload.contactId, } } const newConversation = new this.conversationModel(createConversation); return await newConversation.save();
10 replies