Feat/graphql api #25
ci.yaml
on: pull_request
stable / fmt
17s
stable / clippy
1m 22s
stable / test
2m 1s
stable / doc
1m 34s
Annotations
19 errors and 14 warnings
stable / fmt
Process completed with exit code 1.
|
useless use of `format!`:
sdk/src/mapping/entity.rs#L564
error: useless use of `format!`
--> sdk/src/mapping/entity.rs:564:17
|
564 | / format!(
565 | | r#"
566 | | MATCH (n {{space_id: $space_id}})
567 | | "#,
568 | | )
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
= note: `-D clippy::useless-format` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::useless_format)]`
help: consider using `.to_string()`
|
564 ~ r#"
565 + MATCH (n {space_id: $space_id})
566 + "#.to_string()
|
|
useless use of `format!`:
sdk/src/mapping/entity.rs#L571
error: useless use of `format!`
--> sdk/src/mapping/entity.rs:571:17
|
571 | / format!(
572 | | r#"
573 | | MATCH (n)
574 | | "#,
575 | | )
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
help: consider using `.to_string()`
|
571 ~ r#"
572 + MATCH (n)
573 + "#.to_string()
|
|
useless use of `format!`:
sdk/src/mapping/entity.rs#L599
error: useless use of `format!`
--> sdk/src/mapping/entity.rs:599:17
|
599 | / format!(
600 | | r#"
601 | | WHERE t.id IN $types
602 | | "#,
603 | | )
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
help: consider using `.to_string()`
|
599 ~ r#"
600 + WHERE t.id IN $types
601 + "#.to_string()
|
|
stable / clippy
Clippy has exited with exit code 101
|
stable / doc:
codegen/src/lib.rs#L5
unresolved import `sink::kg::mapping`
|
stable / doc:
codegen/src/lib.rs#L164
no method named `attribute_nodes` found for reference `&sink::kg::Client` in the current scope
|
stable / doc:
codegen/src/lib.rs#L168
no method named `value_type_node` found for reference `&sink::kg::Client` in the current scope
|
stable / doc:
codegen/src/lib.rs#L107
type annotations needed for `Vec<_>`
|
stable / doc:
codegen/src/lib.rs#L3
unused import: `StreamExt`
|
stable / doc:
codegen/src/lib.rs#L3
unused import: `TryStreamExt`
|
stable / doc
Process completed with exit code 101.
|
stable / test:
codegen/src/lib.rs#L5
unresolved import `sink::kg::mapping`
|
stable / test:
codegen/src/lib.rs#L164
no method named `attribute_nodes` found for reference `&sink::kg::Client` in the current scope
|
stable / test:
codegen/src/lib.rs#L168
no method named `value_type_node` found for reference `&sink::kg::Client` in the current scope
|
stable / test:
codegen/src/lib.rs#L107
type annotations needed for `Vec<_>`
|
stable / test:
codegen/src/lib.rs#L3
unused import: `StreamExt`
|
stable / test:
codegen/src/lib.rs#L3
unused import: `TryStreamExt`
|
stable / test
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
stable / fmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / fmt:
api/src/main.rs#L56
Diff in /home/runner/work/kg-node/kg-node/api/src/main.rs
|
stable / fmt:
api/src/main.rs#L76
Diff in /home/runner/work/kg-node/kg-node/api/src/main.rs
|
stable / fmt:
api/src/main.rs#L132
Diff in /home/runner/work/kg-node/kg-node/api/src/main.rs
|
stable / fmt:
api/src/main.rs#L144
Diff in /home/runner/work/kg-node/kg-node/api/src/main.rs
|
stable / fmt:
api/src/main.rs#L320
Diff in /home/runner/work/kg-node/kg-node/api/src/main.rs
|
stable / fmt:
sdk/src/mapping/entity.rs#L469
Diff in /home/runner/work/kg-node/kg-node/sdk/src/mapping/entity.rs
|
stable / fmt:
sdk/src/mapping/entity.rs#L479
Diff in /home/runner/work/kg-node/kg-node/sdk/src/mapping/entity.rs
|
stable / fmt:
sdk/src/mapping/entity.rs#L497
Diff in /home/runner/work/kg-node/kg-node/sdk/src/mapping/entity.rs
|
stable / fmt:
sdk/src/mapping/entity.rs#L535
Diff in /home/runner/work/kg-node/kg-node/sdk/src/mapping/entity.rs
|
stable / fmt:
sdk/src/mapping/entity.rs#L579
Diff in /home/runner/work/kg-node/kg-node/sdk/src/mapping/entity.rs
|
stable / clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / doc
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / test
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|