harini18
harini18
When I run flutter build appbundle --release I get FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':amplify_db_common:compileReleaseJavaWithJavac'. > error: invalid source release: 17...
Yes in iOS emulator.
Any updates - we are blocked completely.
No it never worked.
**Create Vitals** Request: `{"variables":{"input":{"id":"c6f037ff-86aa-4e01-8b84-76388a105dce","standardVitalId":"328d85f0-e1e9-4d99-a71c-38351f42e54e"}},"query":"mutation createVital($input: CreateVitalInput!, $condition: ModelVitalConditionInput) { createVital(input: $input, condition: $condition) { id createdAt updatedAt standardVital { id name createdAt updatedAt } standardVitalId customVital { id name createdAt...
Any updates?
Given it is has been 2 weeks, and we are completely blocked, it will be great if you could at least look at my code and see if I am...
// Event Related ``` Event: a .model({ name: a.string(), date: a.date(), plans: a.hasMany("Plan", "eventId"), goals: a.hasMany("Goal", "eventId"), owner: a .string() .authorization((allow) => [allow.owner().to(["read", "delete"])]), }) .authorization((allow) => [allow.owner()]), ``` I...
Create Goal Request {"variables":{"input":{"id":"84c1a806-82bf-4f39-8c04-73e761402ed9","direction":"DECREASE","from":26.0,"to":20.0,"eventId":"6bab29a4-a120-4b7f-8c0a-e904b4ac30c4"}},"query":"mutation createGoal($input: CreateGoalInput!, $condition: ModelGoalConditionInput) { createGoal(input: $input, condition: $condition) { id direction from to createdAt updatedAt event { id name date createdAt updatedAt owner } eventId...
// Create Goal final newGoal = Goal( id: uuid(), event: event, direction: goalDirection, vital: newlyCreatedVital, from: from, to: to); final request = ModelMutations.create(newGoal); final response = await Amplify.API.mutate(request: request).response;