A. entity Books {
key ID: UUID @(Core.computed: true);
title: String;
author: String;
}
B. entity Books: managed {
key ID: UUID @(Core.Computed: true);
title: String;
author: String;
}
C. entity Books: {
key ID: UUID @(Core.Computed: true);
title: String;
author: String;
}
aspect managed Books{}
D. entity Books: {
key ID UUID (Core.Computed: true);
title: String;
author: String;
aspect managed;
}