thalo-rs / esdl

Event-sourcing Schema Definition Language
Apache License 2.0
43 stars 2 forks source link

feat!: use `->` separator for return type #5

Closed tqwewe closed 2 years ago

tqwewe commented 2 years ago

Use -> separator instead of : for return types.

From:

open_account(initial_balance: Float!): OpenedAccount!

To:

open_account(initial_balance: Float!) -> OpenedAccount!