You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
438 B
22 lines
438 B
package resolvers
|
|
|
|
import (
|
|
"context"
|
|
"git.aiterp.net/rpdata/api/models"
|
|
)
|
|
|
|
func (r *queryResolver) File(ctx context.Context, id string) (*models.File, error) {
|
|
return r.s.Files.Find(ctx, id)
|
|
}
|
|
|
|
func (r *queryResolver) Files(ctx context.Context, filter *models.FileFilter) ([]*models.File, error) {
|
|
if filter == nil {
|
|
public := true
|
|
|
|
filter = &models.FileFilter{
|
|
Public: &public,
|
|
}
|
|
}
|
|
|
|
return r.s.Files.List(ctx, *filter)
|
|
}
|