MCPcopy Create free account
hub / github.com/AmrDeveloper/GQL / date_day_of_month

Function date_day_of_month

crates/gitql-std/src/datetime/mod.rs:366–370  ·  view source on GitHub ↗
(inputs: &[Box<dyn Value>])

Source from the content-addressed store, hash-verified

364}
365
366pub fn date_day_of_month(inputs: &[Box<dyn Value>]) -> Box<dyn Value> {
367 let date = inputs[0].as_date().unwrap();
368 let parsed_date = DateTime::from_timestamp(date, 0).unwrap();
369 Box::new(IntValue::new(parsed_date.day().into()))
370}
371
372pub fn date_day_of_year(inputs: &[Box<dyn Value>]) -> Box<dyn Value> {
373 let date = inputs[0].as_date().unwrap();

Callers

nothing calls this directly

Calls 1

as_dateMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…