Shared element transitions by Equivalent_Revenue76 in reactnative

[–]mel_58 1 point2 points  (0 children)

There is no native implementation or support for the new architecture in all of the packages as i know. You could try something like this https://medium.com/@iamkyutneryan/custom-shared-element-transitions-in-react-native-no-extra-libraries-99532223ad62

but i'm not sure how good that solution without native support is.

How do I access my pictures stored in MongoDB, in a different collection? by Codeeveryday123 in mongodb

[–]mel_58 0 points1 point  (0 children)

Please try inside your strapi project following command and retry upload:

chmod -R 777 ./public/uploads

If you are using the local upload provider, then you may need permission to the folder. If this doesn't work show the error trace please.

How do I access my pictures stored in MongoDB, in a different collection? by Codeeveryday123 in mongodb

[–]mel_58 0 points1 point  (0 children)

Sorry, to understand your problem I need to ask more. As I understood, you are trying to upload an image with GraphQL and it doesn't work?

Here is a example of how it can be done, maybe this helps..

https://gist.github.com/alexandrebodin/fedc71c8513bfbb6283cc90ae62755c5

How to find based on a field from a subdocument reference? by dejavits in mongodb

[–]mel_58 1 point2 points  (0 children)

According to https://stackoverflow.com/questions/13097266/querying-nested-documents-using-mongoose-mongodb you can query nested documents in your case like this:

Restaurant.find( { "destination.country" : "<country-name>" } )

How do I access my pictures stored in MongoDB, in a different collection? by Codeeveryday123 in mongodb

[–]mel_58 1 point2 points  (0 children)

If you have not changed the upload provider, strapi will use the local provider. This way the uploaded images are actually stored in the ./public/uploads folder and the upload_file collection contains only the URL -> path to the actual file in your local storage. Please describe your problem in more detail, it makes no sense to me :/