# Set with single trailing comma {1,} ==> SurrealQL(Set(BraceOpen,Number(Int),BraceClose)) # Set with lone comma {,} ==> SurrealQL(Set(BraceOpen,BraceClose)) # Set with two elements {1, 2} ==> SurrealQL(Set(BraceOpen,Number(Int),Number(Int),BraceClose)) # Set with three elements {1, 2, 3} ==> SurrealQL(Set(BraceOpen,Number(Int),Number(Int),Number(Int),BraceClose))