Can’t convert {data: []} to Vector

@FreeRoss I replied to your upload issue here. Hopefully that helps you. As far as your UserEmbedded type goes. Just so you know I have been using Fauna’s @embedded directive as a way to shut off Fauna’s autogeneration. If you use @embedded Fauna tends to leave that type alone and does not generate any CRUD operations or return Types. That also means that inside of an embedded type like this, Fauna’s other directives are basically N/A. You will have to remove the @unique directives because they will no longer function as expected inside a @embedded type. Also since no Page return type has been generated you must make sure that you are only returning the data object for your user field in your FQL or you will get an error similar to the one you had before.