Eli A Taylor

Results 8 comments of Eli A Taylor

@SamuelHassine , I wish i could say that worked. I tried all variations of ``` fields = {} fields["stix_id"] = observed["standard_id"] fields["id"] = observed["id"] fields['number_observed'] = observed["number_observed"] + 1 #...

@SamuelHassine , unfortunately it's still not budging even when incrementing `last_observed` by 1 second each run. ``` fields = {} fields["stix_id"] = observed["standard_id"] fields["id"] = observed["id"] fields['number_observed'] = 1 #...

@SamuelHassine , I've verified through breakpoints neither `last_observed` nor `number_observed` are updated, despite sending the updated fields object. Both runs show: The only difference in my queried object and update...

@SamuelHassine , i now see i'm getting this error: ``` {'name': 'Variable "$input" got invalid value { id: "3936c937-8315-49e3-9532-efbed95c8d07", entity_type: "Url", parent_types: ["Basic-Object", "Stix-Object", "Stix-Core-Object", "Stix-Cyber-Observable"], standard_id: "url--e9d97d97-6e83-501a-bed5-91786286d4f9", spec_version: "2.1",...

@SamuelHassine , resolved. in the end. `confidence` and `update` didn't matter. I do need to increment the `last_observed` by a millisecond and only pass `number_observed=1` to increment it's value. My...

To preserve debug mode: "Try resetting your Metro bundler cache with `yarn start --reset-cache`, `npm start -- --reset-cache` or `expo start -c` and run the app again" From https://docs.swmansion.com/react-native-reanimated/docs/guides/troubleshooting

found this is easily done by adding the fields to the schema: @ https://github.com/keystonejs/keystone-storage-adapter-s3/blob/master/index.js#L65 ``` S3Adapter.SCHEMA_FIELD_DEFAULTS = { filename: true, bucket: false, path: false, etag: false, width:false, height:false, wUnits:false, hUnits:false...