@@ -385,35 +385,35 @@ mod date_scalar {
385385
386386[ Juniper] provides out-of-the-box [ GraphQL scalar] [ 0 ] implementations for some very common [ Rust] crates. The types from these crates will be usable in your schemas automatically after enabling the correspondent self-titled [ Cargo feature] .
387387
388- | [ Rust] type | [ GraphQL] scalar | [ Cargo feature] |
389- | -----------------------------| ------------------| ------------------|
390- | [ ` BigDecimal ` ] | ` BigDecimal ` | [ ` bigdecimal ` ] |
391- | [ ` bson::oid::ObjectId ` ] | ` ObjectId ` | [ ` bson ` ] |
392- | [ ` bson::DateTime ` ] | ` UtcDateTime ` | [ ` bson ` ] |
393- | [ ` chrono::NaiveDate ` ] | [ ` Date ` ] | [ ` chrono ` ] |
394- | [ ` chrono::NaiveTime ` ] | [ ` LocalTime ` ] | [ ` chrono ` ] |
395- | [ ` chrono::NaiveDateTime ` ] | ` LocalDateTime ` | [ ` chrono ` ] |
396- | [ ` chrono::DateTime ` ] | [ ` DateTime ` ] | [ ` chrono ` ] |
397- | [ ` chrono_tz::Tz ` ] | ` TimeZone ` | [ ` chrono-tz ` ] |
398- | [ ` Decimal ` ] | ` Decimal ` | [ ` rust_decimal ` ] |
399- | [ ` jiff::civil::Date ` ] | [ ` LocalDate ` ] | [ ` jiff ` ] |
400- | [ ` jiff::civil::Time ` ] | [ ` LocalTime ` ] | [ ` jiff ` ] |
401- | [ ` jiff::civil::DateTime ` ] | ` LocalDateTime ` | [ ` jiff ` ] |
402- | [ ` jiff::Timestamp ` ] | [ ` DateTime ` ] | [ ` jiff ` ] |
403- | [ ` jiff::Span ` ] | [ ` Duration ` ] | [ ` jiff ` ] |
404- | [ ` time::Date ` ] | [ ` Date ` ] | [ ` time ` ] |
405- | [ ` time::Time ` ] | [ ` LocalTime ` ] | [ ` time ` ] |
406- | [ ` time::PrimitiveDateTime ` ] | ` LocalDateTime ` | [ ` time ` ] |
407- | [ ` time::OffsetDateTime ` ] | [ ` DateTime ` ] | [ ` time ` ] |
408- | [ ` time::UtcOffset ` ] | [ ` UtcOffset ` ] | [ ` time ` ] |
409- | [ ` Url ` ] | ` Url ` | [ ` url ` ] |
410- | [ ` Uuid ` ] | ` Uuid ` | [ ` uuid ` ] |
388+ | [ Rust] type | [ GraphQL] scalar | [ Cargo feature] |
389+ | -----------------------------| ------------------- | ------------------|
390+ | [ ` bigdecimal:: BigDecimal` ] | ` BigDecimal ` | [ ` bigdecimal ` ] |
391+ | [ ` bson::oid::ObjectId ` ] | ` ObjectId ` | [ ` bson ` ] |
392+ | [ ` bson::DateTime ` ] | [ ` DateTime ` ] | [ ` bson ` ] |
393+ | [ ` chrono::NaiveDate ` ] | [ ` LocalDate ` ] | [ ` chrono ` ] |
394+ | [ ` chrono::NaiveTime ` ] | [ ` LocalTime ` ] | [ ` chrono ` ] |
395+ | [ ` chrono::NaiveDateTime ` ] | [ ` LocalDateTime ` ] | [ ` chrono ` ] |
396+ | [ ` chrono::DateTime ` ] | [ ` DateTime ` ] | [ ` chrono ` ] |
397+ | [ ` chrono_tz::Tz ` ] | [ ` TimeZone ` ] | [ ` chrono-tz ` ] |
398+ | [ ` rust_decimal:: Decimal` ] | ` Decimal ` | [ ` rust_decimal ` ] |
399+ | [ ` jiff::civil::Date ` ] | [ ` LocalDate ` ] | [ ` jiff ` ] |
400+ | [ ` jiff::civil::Time ` ] | [ ` LocalTime ` ] | [ ` jiff ` ] |
401+ | [ ` jiff::civil::DateTime ` ] | [ ` LocalDateTime ` ] | [ ` jiff ` ] |
402+ | [ ` jiff::Timestamp ` ] | [ ` DateTime ` ] | [ ` jiff ` ] |
403+ | [ ` jiff::Span ` ] | [ ` Duration ` ] | [ ` jiff ` ] |
404+ | [ ` time::Date ` ] | [ ` LocalDate ` ] | [ ` time ` ] |
405+ | [ ` time::Time ` ] | [ ` LocalTime ` ] | [ ` time ` ] |
406+ | [ ` time::PrimitiveDateTime ` ] | [ ` LocalDateTime ` ] | [ ` time ` ] |
407+ | [ ` time::OffsetDateTime ` ] | [ ` DateTime ` ] | [ ` time ` ] |
408+ | [ ` time::UtcOffset ` ] | [ ` UtcOffset ` ] | [ ` time ` ] |
409+ | [ ` url:: Url` ] | [ ` URL ` ] | [ ` url ` ] |
410+ | [ ` uuid:: Uuid` ] | [ ` UUID ` ] | [ ` uuid ` ] |
411411
412412
413413
414414
415415[ `bigdecimal` ] : https://docs.rs/bigdecimal
416- [ `BigDecimal` ] : https://docs.rs/bigdecimal/latest/bigdecimal/struct.BigDecimal.html
416+ [ `bigdecimal:: BigDecimal` ] : https://docs.rs/bigdecimal/latest/bigdecimal/struct.BigDecimal.html
417417[ `bson` ] : https://docs.rs/bson
418418[ `bson::DateTime` ] : https://docs.rs/bson/latest/bson/struct.DateTime.html
419419[ `bson::oid::ObjectId` ] : https://docs.rs/bson/latest/bson/oid/struct.ObjectId.html
@@ -424,7 +424,6 @@ mod date_scalar {
424424[ `chrono::NaiveTime` ] : https://docs.rs/chrono/latest/chrono/naive/struct.NaiveTime.html
425425[ `chrono-tz` ] : https://docs.rs/chrono-tz
426426[ `chrono_tz::Tz` ] : https://docs.rs/chrono-tz/latest/chrono_tz/enum.Tz.html
427- [ `Date` ] : https://graphql-scalars.dev/docs/scalars/date
428427[ `DateTime` ] : https://graphql-scalars.dev/docs/scalars/date-time
429428[ `Decimal` ] : https://docs.rs/rust_decimal/latest/rust_decimal/struct.Decimal.html
430429[ `Duration` ] : https://graphql-scalars.dev/docs/scalars/duration
@@ -436,6 +435,7 @@ mod date_scalar {
436435[ `jiff::Span` ] : https://docs.rs/jiff/latest/jiff/struct.Span.html
437436[ `jiff::Timestamp` ] : https://docs.rs/jiff/latest/jiff/struct.Timestamp.html
438437[ `LocalDate` ] : https://graphql-scalars.dev/docs/scalars/local-date
438+ [ `LocalDateTime` ] : https://graphql-scalars.dev/docs/scalars/local-date-time
439439[ `LocalTime` ] : https://graphql-scalars.dev/docs/scalars/local-time
440440[ `rust_decimal` ] : https://docs.rs/rust_decimal
441441[ `ScalarValue` ] : https://docs.rs/juniper/0.16.1/juniper/trait.ScalarValue.html
@@ -446,11 +446,14 @@ mod date_scalar {
446446[ `time::Time` ] : https://docs.rs/time/latest/time/struct.Time.html
447447[ `time::UtcOffset` ] : https://docs.rs/time/latest/time/struct.UtcOffset.html
448448[ `time::OffsetDateTime` ] : https://docs.rs/time/latest/time/struct.OffsetDateTime.html
449+ [ `TimeZone` ] : https://graphql-scalars.dev/docs/scalars/time-zone
449450[ `url` ] : https://docs.rs/url
450- [ `Url` ] : https://docs.rs/url/latest/url/struct.Url.html
451+ [ `url::Url` ] : https://docs.rs/url/latest/url/struct.Url.html
452+ [ `URL` ] : https://graphql-scalars.dev/docs/scalars/url
451453[ `UtcOffset` ] : https://graphql-scalars.dev/docs/scalars/utc-offset
452454[ `uuid` ] : https://docs.rs/uuid
453- [ `Uuid` ] : https://docs.rs/uuid/latest/uuid/struct.Uuid.html
455+ [ `uuid::Uuid` ] : https://docs.rs/uuid/latest/uuid/struct.Uuid.html
456+ [ `UUID` ] : https://graphql-scalars.dev/docs/scalars/uuid
454457[ Cargo feature ] : https://doc.rust-lang.org/cargo/reference/features.html
455458[ GraphQL ] : https://graphql.org
456459[ Juniper ] : https://docs.rs/juniper
0 commit comments