You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// we have a list of vehicles, lets add a new one
if err := mp.PeopleAppendListProperty(ctx, "Spartan-117", map[string]any{
"vehicles": 1,
}); err != nil {
return err
}
Correct Version:
// we have a list of vehicles, lets add a new one
if err := mp.PeopleAppendListProperty(ctx, "Spartan-117", map[string]any{
"vehicles": "puma",
}); err != nil {
return err
}
The text was updated successfully, but these errors were encountered:
josh-codexhealth
changed the title
Incorrect value in examples /peopleAppendListProperty.go
Incorrect value in examples/peopleAppendListProperty.go
Mar 28, 2024
The
vehicles
property is incorrect.From line 34-
Correct Version:
The text was updated successfully, but these errors were encountered: