Slide 30
Slide 30 text
Laskar - Schema
● Entities are stored in the SQL-compliant persistence layer as a table
● Entities have “stored” properties
○ will be mapped to SQL table fields
● GraphQL CRUD queries and mutations will automatically be
“generated” for these entities
○ get, create, edit, delete, getList, etc.
● Can also replace some straightforward SQL filtering logic
● Replaces tons of boilerplate -- can be thousands of lines of code!
○ Controller
○ DAL
○ etc.