1- # Uuid — GraphQL Custom Scalar
1+ # UUID — GraphQL Custom Scalar
22
33Author – ChilliCream
44
@@ -11,24 +11,24 @@ Copyright © GraphQL contributors. This specification is licensed under
1111
1212# Overview
1313
14- The ` Uuid ` scalar type represents a Universally Unique Identifier (UUID) as
14+ The ` UUID ` scalar type represents a Universally Unique Identifier (UUID) as
1515defined by RFC 9562. It is intended for scenarios where globally unique
1616identifiers are required, such as database primary keys, distributed system
1717identifiers, or any situation requiring collision-resistant unique identifiers.
1818
19- Unlike the built-in ` ID ` scalar which can be any string or number, ` Uuid `
19+ Unlike the built-in ` ID ` scalar which can be any string or number, ` UUID `
2020enforces the specific format and structure of UUIDs, providing stronger
2121guarantees about uniqueness and format validity.
2222
2323The scalar uses the standard UUID string representation as defined in RFC 9562.
2424
2525# Recommended name
2626
27- The recommended name for this scalar is ` Uuid ` .
27+ The recommended name for this scalar is ` UUID ` .
2828
2929# Result spec
3030
31- A ` Uuid ` scalar must serialize to a string conforming to the UUID string
31+ A ` UUID ` scalar must serialize to a string conforming to the UUID string
3232representation defined in RFC 9562. This represents a UUID in the format:
3333` xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx ` where each ` x ` is a hexadecimal digit
3434(0-9, a-f, A-F).
@@ -71,7 +71,7 @@ These are invalid result values:
7171
7272# Input spec
7373
74- A ` Uuid ` scalar accepts string values conforming to the UUID string
74+ A ` UUID ` scalar accepts string values conforming to the UUID string
7575representation defined in RFC 9562, both as GraphQL literals and as JSON input
7676values.
7777
0 commit comments