I'm trying to create a new feature in a feature service and as part of that I need to create a new GUID for a field. I'm able to create the feature, but the guid that I am passing into the new feature is not saving.
I'm using the uuid library and have tried using the these two methods,
- using uuid.v4obj();
- using uuid.v4() to create a guid in string and adding curly brackets to pass in a string version
The GUID field in my feature service is not read-only and everything else saves fine. What is the best approach to saving this data type?
Thanks!