handmade.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
handmade.social is for all handmade artisans to create accounts for their Etsy and other handmade business shops.

Server stats:

35
active users

#mongoose

0 posts0 participants0 posts today
Víctor Maldonado<p><span class="h-card" translate="no"><a href="https://defcon.social/@vmaldosan" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>vmaldosan@defcon.social</span></a></span> adding a backend of ExpressJS + MongoDb. The basic API is almost ready, but after many hours of try and error, I couldn't figure out how to include a Map as a property of users. Today I switched from the official NodeJS client to Mongoose and it works! </p><p><a href="https://mastodon.ie/tags/propag8" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>propag8</span></a> <a href="https://mastodon.ie/tags/mongodb" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mongodb</span></a> <a href="https://mastodon.ie/tags/mongoose" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mongoose</span></a></p>
dafne kiyui 🌻<p>looks like the <a href="https://veganism.social/tags/Mongoose" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Mongoose</span></a> module for <a href="https://veganism.social/tags/NestJS" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NestJS</span></a> just got a whole lot better too 😄 </p><p>i can define schemas with just schema classes now!</p><p><a href="https://github.com/nestjs/mongoose/issues/2182" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/nestjs/mongoose/iss</span><span class="invisible">ues/2182</span></a></p>
dafne kiyui 🌻<p>looks simple enough right? right?</p><p>```typescript<br>@Injectable()<br>export class InstanceToPlainPipe implements PipeTransform {<br> constructor(private readonly options?: ClassTransformOptions) {}</p><p> transform(value: unknown) {<br> return instanceToPlain(value, this.options)<br> }<br>}<br>```</p><p>wrong! because: <a href="https://github.com/typestack/class-transformer/issues/1324" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/typestack/class-tra</span><span class="invisible">nsformer/issues/1324</span></a></p><p><a href="https://veganism.social/tags/Mongoose" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Mongoose</span></a> / <a href="https://veganism.social/tags/MongoDB" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MongoDB</span></a> query selector options start with `$`, which isn't valid in <a href="https://veganism.social/tags/GraphQL" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GraphQL</span></a>. using `@Expose` isn't an option now either.</p><p>overcook my beans and yell me a river but this sounds like a tomorrow problem.</p><p>and something for good ‘ol `JSON.parse(JSON.stringify(x))` 🙉</p>
dafne kiyui 🌻<p>great. i should have validated this earlier.</p><p>i thought i'd use the `ValidationPipe` in <a href="https://veganism.social/tags/NestJS" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NestJS</span></a> to convert our DTOs from something <a href="https://veganism.social/tags/GraphQL" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GraphQL</span></a> friendly to something i could pipe directly into <a href="https://veganism.social/tags/Mongoose" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Mongoose</span></a> but it turns out that isn't an option because of this bloody line:</p><p><a href="https://github.com/Automattic/mongoose/blob/d861d212028e20765ac1aa5523bf641fbf8f4b3d/lib/cast.js#L314" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">github.com/Automattic/mongoose</span><span class="invisible">/blob/d861d212028e20765ac1aa5523bf641fbf8f4b3d/lib/cast.js#L314</span></a></p><p>our arguments are deeply nested, so we can provide options like `where`, `sortBy`, etc. so we use `class-transformer` decorators under the hood to convert them to the input classes which we can subsequently transform and validate... but Mongoose expects a POJO ...and classes are functions 🤦‍♀️ </p><p>the options are to either add an extra transform step at the `ArgsType` DTO to convert the input to a POJO or basically add a pipe that does the same.</p><p>i was really hoping it would be just as simple as implementing some `toObject` interface of sorts. grr.</p>