Skip to content

Commit

Permalink
fix a11y issues
Browse files Browse the repository at this point in the history
  • Loading branch information
renebrandel committed Dec 12, 2023
1 parent 3aaf0c9 commit ac98d7f
Showing 1 changed file with 37 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -773,48 +773,48 @@ Unlike MySQL, PostgreSQL does support date time or timestamp values with an offs
| SQL | GraphQL |
|--------------------|--------------|
| **String** | |
| char | <span style={{ color: "orange" }}>String</span> |
| varchar | <span style={{ color: "orange" }}>String</span> |
| tinytext | <span style={{ color: "orange" }}>String</span> |
| text | <span style={{ color: "orange" }}>String</span> |
| mediumtext | <span style={{ color: "orange" }}>String</span> |
| longtext | <span style={{ color: "orange" }}>String</span> |
| char | String |
| varchar | String |
| tinytext | String |
| text | String |
| mediumtext | String |
| longtext | String |
| **Geometry** | |
| geometry | <span style={{ color: "orange" }}>String</span> |
| point | <span style={{ color: "orange" }}>String</span> |
| linestring | <span style={{ color: "orange" }}>String</span> |
| geometryCollection | <span style={{ color: "orange" }}>String</span> |
| geometry | String |
| point | String |
| linestring | String |
| geometryCollection | String |
| **Numeric** | |
| smallint | <span style={{ color: "skyblue" }}>Int</span> |
| mediumint | <span style={{ color: "skyblue" }}>Int</span> |
| int | <span style={{ color: "skyblue" }}>Int</span> |
| integer | <span style={{ color: "skyblue" }}>Int</span> |
| bigint | <span style={{ color: "skyblue" }}>Int</span> |
| tinyint | <span style={{ color: "skyblue" }}>Int</span> |
| float | <span style={{ color: "blue" }}>Float</span> |
| double | <span style={{ color: "blue" }}>Float</span> |
| decimal | <span style={{ color: "blue" }}>Float</span> |
| dec | <span style={{ color: "blue" }}>Float</span> |
| numeric | <span style={{ color: "blue" }}>Float</span> |
| smallint | Int |
| mediumint | Int |
| int | Int |
| integer | Int |
| bigint | Int |
| tinyint | Int |
| float | Float |
| double | Float |
| decimal | Float |
| dec | Float |
| numeric | Float |
| **Date and Time** | |
| date | <span style={{ color: "firebrick" }}>AWSDate</span> |
| datetime | <span style={{ color: "red" }}>AWSDateTime</span> |
| timestamp | <span style={{ color: "red" }}>AWSDateTime</span> |
| time | <span style={{ color: "deeppink" }}>AWSTime</span> |
| year | <span style={{ color: "skyblue" }}>Int</span> |
| date | AWSDate |
| datetime | AWSDateTime |
| timestamp | AWSDateTime |
| time | AWSTime |
| year | Int |
| **Binary** | |
| binary | <span style={{ color: "orange" }}>String</span> |
| varbinary | <span style={{ color: "orange" }}>String</span> |
| tinyblob | <span style={{ color: "orange" }}>String</span> |
| blob | <span style={{ color: "orange" }}>String</span> |
| mediumblob | <span style={{ color: "orange" }}>String</span> |
| longblob | <span style={{ color: "orange" }}>String</span> |
| binary | String |
| varbinary | String |
| tinyblob | String |
| blob | String |
| mediumblob | String |
| longblob | String |
| **Others** | |
| bool | <span style={{ color: "green" }}>Boolean</span> |
| boolean | <span style={{ color: "green" }}>Boolean</span> |
| bit | <span style={{ color: "skyblue" }}>Int</span> |
| json | <span style={{ color: "purple" }}>AWSJSON</span> |
| enum | <span style={{ color: "violet" }}>ENUM</span> |
| bool | Boolean |
| boolean | Boolean |
| bit | Int |
| json | AWSJSON |
| enum | ENUM |

### Supported Amplify directives for auto-generated GraphQL schema

Expand Down

0 comments on commit ac98d7f

Please sign in to comment.