rstudio / pins-r

Pin, discover, and share resources
https://pins.rstudio.com
Other
312 stars 63 forks source link

pin name missing from pin_meta #544

Closed kmasiello closed 2 years ago

kmasiello commented 2 years ago

Would be lovely if "name" were returned from pin_meta.

hadley commented 2 years ago

Reprex:

library(pins)

b <- board_temp()
b %>% pin_write(head(mtcars), "mtcars", metadata = list("Hadley" = TRUE))
#> Guessing `type = 'rds'`
#> Creating new version '20211116T163645Z-e8160'
#> Writing to pin 'mtcars'
b %>% pin_meta("mtcars") %>% .$name
#> NULL

Created on 2021-11-16 by the reprex package (v2.0.1)

github-actions[bot] commented 2 years ago

This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.