for Eg :- User is giving me some details and i want to add those details in Neo4j Desktop , with the vector representation of the details . the vector will be stored in Proprties of the nodes in field embeddings.
If you want to use one of the node embedding algorithms in GDS to generate embeddings for your nodes, you have to first project all of the relevant nodes into GDS (so that you can run an algorithm on them). That means that the nodes must already at this time be inside your Neo4j database. So in this case it's not possible to add an embedding to a node at creation time.
Hope this is helpful,
Adam