// all relations between 2 nodes
MATCH (startNode {property1: value1})-[r]->(endNode {property2: value2})
DELETE r
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UNWIND [ | |
"Atlantic Council", | |
"Carnegie Endowment" | |
] AS sourceName | |
MERGE (n:NewsSource {name: sourceName, value: sourceName}) | |
RETURN n; |
- Get all links that start with "https://neofeed.com.br/" and have "h2" or "h3" inside them
.news article a[href^="https://neofeed.com.br/"]:has(h2,h3)
- CSS Guide css guide
Array.from(document.querySelectorAll('a')).map(a => a.href);
Ver pods
kubectl get pods -n pocs
Ver logs
kubectl logs -n pocs
docker build -t backend_debug -f Dockerfile_ssh .
sudo apt update sudo apt install build-essential sudo apt install libssl-dev export OPENSSL_ROOT_DIR=/usr/include/openssl wget https://cmake.org/files/v3.29/cmake-3.29.2.tar.gz tar -xzvf cmake-3.29.2.tar.gz cd cmake-3.29.2 ./bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FEAT: nova feature no projeto, exemplo: funcionalidade, serviço, endpoint, etc | |
REFACTOR: refatoração de alguma parte do código | |
FIX: correção de erros que estão causando bugs | |
CHORE: mudanças que não influenciam o sistema nem arquivos de teste, exemplo: adicionar arquivos ao .gitignore, mudanças no eslint, etc | |
STYLE: mudanças de formatação ou estilo do código, que não influenciam na lógica do sistema | |
NewerOlder